这是我在模板中的代码。
{% if 'index.html' in "{{ request.build_absolute_uri }}" %}
'hello'
{% else %}
'bye'
{% endif %}
现在我的 url 值目前是"http://127.0.0.1:8000/login?next=/index.html"
即使"index.html"
在字符串中它仍然打印再见。
当我在 python shell 中运行相同的代码时,它可以工作。不知道是什么错误。