django-template将url分配给变量

时间:2013-05-31 08:57:05

标签: django django-templates

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

{% with url_news = url 'news'  %}

 {% with url 'news' as url_news %} 

1 个答案:

答案 0 :(得分:11)

使用url tag

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

请注意,当您使用此语法时,如果无法解析该网址,它将无提示失败。