gpt4 book ai didi

django-template 将 url 分配给变量

转载 作者:行者123 更新时间:2023-12-04 22:32:34 26 4
gpt4 key购买 nike

如何将 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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com