模板中是否可能有类似的东西?
{% if request.path == url 'posts:post_detail' pk=instance.id %}
如果没有,我如何获得True
的结果?我希望在用户查看诸如post/1
之类的特定帖子时做到这一点。
答案 0 :(得分:3)
是的,您可以使用as var
语法:
{% url 'posts:post_detail' pk=instance.id as the_url %}
...
{% if request.path == the_url %}
...do something
{% endif %}