代码之家  ›  专栏  ›  技术社区  ›  AlxVallejo

样式标记中的django模板变量

  •  2
  • AlxVallejo  · 技术社区  · 6 年前

    似乎无法在我的django标记中获得可变百分比宽度输出。

                {% with "width: "|add:percent|add:"%" as percent_style %}
                <div class="percentile" style={% include percent_style %} />
                {% endwith %}
    

    我在这里做错什么了?我知道这个错误

    django.template.exceptions.templateDoesNotExist:%

    2 回复  |  直到 6 年前
        1
  •  2
  •   neverwalkaloner    6 年前

    而不是 include 尝试查找名为 percent_style 你应该简单使用 {{ percent_style }} 以下内容:

    {% with "width: "|add:percent|add:"%" as percent_style %}
    <div class="percentile" style="{{ percent_style }}" />
    {% endwith %}
    
        2
  •  1
  •   Lemayzeur    6 年前

    这似乎很容易做,而不是试图 include ,只需使用与百分比连接的变量 % 签字。你不需要使用 {% with %} {% endwith %}

    <div class="percentile" style="width:{{ percent }}%" />