我想通過單擊 html 按鈕來調(diào)用視圖函數(shù) resign_game 。<form?action="{%?url?'resign_game'?%}"?method="POST">
?????<button?type="button">RESIGN</button>
?????</form>這是我的 urls.py 中的內(nèi)容:path('resign_game/',?views.resign_current_game,?name='resign_game')但是,在我單擊按鈕后,視圖函數(shù)從未被調(diào)用。我將不勝感激您的建議。謝謝!
1 回答

拉丁的傳說
TA貢獻1789條經(jīng)驗 獲得超8個贊
帶有的按鈕元素type="button"
不發(fā)送表單。將類型設置為“提交”:
?<button?type="submit">RESIGN</button>
或者刪除類型:
?<button>RESIGN</button>
添加回答
舉報
0/150
提交
取消