前提・実現したいこと
ダイスの結果をpythonに渡したい
発生している問題・エラーメッセージ
flaskでwebアプリケーションを作っています。javascriptで作成したダイスの結果をpythonに受け渡したいのですが、方法が分かりません。
エラーメッセージ
該当のソースコード
python3.8.3
1@app.route('/sac',methods=['POST']) 2@login_required 3def func_test(): 4 req = request.form 5 dice = req.get('dice_1') 6 print(dice) 7 return render_template('sac.html', dice=dice) 8
html
1<body> 2 <h1>新規作成</h1> 3 4 <p>ようこそ,{{ current_user.nickname }} さん.</p> 5<table> 6 <tr><td>CON</td> 7 <td id="dice1d6">1d6</td> 8 <td> 9 <input type="hidden" name="csrf_token" value="{{ csrf_token() }}" /> 10 <input type="button" name="dice_1" onclick="diceFunc1()" value="サイコロを振る"> 11 </td></tr> 12 <td id="dice2d6">2d6</td> 13 <input type="hidden" name="csrf_token" value="{{ csrf_token() }}" /> 14 <input type="button" onclick="diceFunc2()" value="サイコロを振る"> 15<td id="dice3d6">3d6</td> 16<input type="hidden" name="csrf_token" value="{{ csrf_token() }}" /> 17 <input type="button" onclick="diceFunc3()" value="サイコロを振る"> 18</tr> 19</table> 20<form action="/sac" method="post"> 21 <input type="hidden" name="csrf_token" value="{{ csrf_token() }}" /> 22 <input type="hidden" name="dice" value="dice1"> 23 <input type = "submit" value="振る"> 24</form> 25 </body> 26</html>
javascript
1 <script> 2 function diceFunc1() { 3 var dice1 = Math.floor(Math.random() * 6) + 1; 4 document.getElementById("dice1d6").innerHTML = dice1; 5} 6function diceFunc2() { 7var dice2 = Math.floor(Math.random() * 6) + 1; 8var dice3 = Math.floor(Math.random() * 6) + 1; 9document.getElementById("dice2d6").innerHTML = dice2+dice3; 10} 11function diceFunc3() { 12var dice4 = Math.floor(Math.random() * 6) + 1; 13var dice5 = Math.floor(Math.random() * 6) + 1; 14var dice6 = Math.floor(Math.random() * 6) + 1; 15document.getElementById("dice3d6").innerHTML = dice4+dice5+dice6; 16} 17 </script>
試したこと
inputでvalueにダイスの変数名を指定する。
補足情報(FW/ツールのバージョンなど)
flask
ここにより詳細な情報を記載してください。