這是我在模板中的代碼。現在如何查看一個字符串是否包含Django模板中的另一個字符串
{% if 'index.html' in "{{ request.build_absolute_uri }}" %}
'hello'
{% else %}
'bye'
{% endif %}
我的網址值目前是"http://127.0.0.1:8000/login?next=/index.html"
即使"index.html"
是有它仍然打印輪空的字符串中。
當我在python shell中運行相同的代碼時,它可以工作。不知道錯誤是什麼。
寫一個自定義模板標籤,可以幫助你 – Anto
可能是這個片段https://djangosnippets.org/snippets/1350/可以幫助你 – alko