我正在使用Django 3.1
我配置了URL,以便在模板中正确使用以下内容:
<li><a href="{% url 'sitemember:profile' 'bobby' %}">{{ user.username }} </a></li>
用户。用户名解析为“bobby”
如何传递变量 user.username 到 url() 标记,以便URL正确解析为:
user.username
url()
https://localhost:/user/bobby(举个例子)
您可以在 {% url ⦠%} template tag [Django-doc] :
{% url ⦠%}
<a href="{% url 'sitemember:profile' user.username %}">