如何将 url 分配给模板中的变量?
我试过了:
{% with url_news = url 'news' %}
和
{% with url 'news' as url_news %}
最佳答案
使用 as
tag 的 url
选项
{% 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/