如何将 url 分配给模板中的变量?
我试过了:

{% with url_news = url 'news'  %}


 {% with url 'news' as url_news %}

最佳答案

使用 as tagurl 选项

{% url 'news' as the_url %}
{% if the_url %}
<a href="{{ the_url }}">Link to optional stuff</a>
{% endif %}

请注意,当您使用此语法时,如果无法解析 url,它将以静默方式失败。

关于django-template 将 url 分配给变量,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16853499/

10-15 01:46