目前,我可以像这样从我的html模板传递GET参数。
<a href="display-associations/players/?association={{ association.user.username }}">View Players</a>
但是我可以通过url name参数来做到吗?我想要以下内容。
<a href="{% url 'player-registration' %}">Add Player</a>
我不知道如何将GET参数添加到url名称中。
答案 0 :(得分:1)
<a href="{% url 'player-registration' %}?association={{ association.user.username }}">Add Player</a>
这样使用
修改:
"
个在href
中固定的位置