如何根据请求路径编写if语句

时间:2019-07-15 18:08:42

标签: django django-templates django-views

我知道我可以执行以下操作,使用if函数检查urlrequest.path与模板中的“活动”一词:

{% url 'dashboard' as dashboard %}
{% if request.path == dashboard %}active{% endif %}

如何在if语句中调用url对象?例如:

{% if request.path == url.dashboard %}active{% endif %}

0 个答案:

没有答案