Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在模板中,如何将名称映射回 URL,类似于 Django 的{% url %}标签?
{% url %}
我读到reverse_url应该可以工作,但这给出了一个错误:
reverse_url
<li> <a href="{% reverse_url('login') %}">Login</a> </li>
你想要{{ reverse_url('login') }}。也就是说,模板表达式而不是指令。语法参考在这里(很简短)。
{{ reverse_url('login') }}