Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将 url 分配给模板中的变量?我试过了:
{% with url_news = url 'news' %}
和
{% with url 'news' as url_news %}
使用标签as的选项url
as
url
{% url 'news' as the_url %} {% if the_url %} <a href="{{ the_url }}">Link to optional stuff</a> {% endif %}
请注意,当您使用此语法时,如果无法解析 url,它将静默失败。