如何将变量的url分配到模板中? 我试过了:
{% with url_news = url 'news' %}
和
{% with url 'news' as url_news %}
答案 0 :(得分:11)
使用url
tag
as
选项
{% url 'news' as the_url %}
{% if the_url %}
<a href="{{ the_url }}">Link to optional stuff</a>
{% endif %}
请注意,当您使用此语法时,如果无法解析该网址,它将无提示失败。