我想通过单击 html 按钮来调用视图函数 resign_game 。<form action="{% url 'resign_game' %}" method="POST">
<button type="button">RESIGN</button>
</form>这是我的 urls.py 中的内容:path('resign_game/', views.resign_current_game, name='resign_game')但是,在我单击按钮后,视图函数从未被调用。我将不胜感激您的建议。谢谢!
1 回答
拉丁的传说
TA贡献1789条经验 获得超8个赞
带有的按钮元素type="button"
不发送表单。将类型设置为“提交”:
<button type="submit">RESIGN</button>
或者删除类型:
<button>RESIGN</button>
添加回答
举报
0/150
提交
取消