いつもお世話になります。
よろしくお願いします。
困ってること
python 3.7
bottle
POSTでリクエストを通そうとすると表題エラーが発生します。
GETだと通りますが、この違いは何なのでしょうか?
python
1from bottle import route, run, template, post 2 3@route("/") 4def index(): 5 return template("index") 6 7@route("/switch",method="POST") 8def switch(): 9 return template("index",mes="つながったよ") 10 11run(host="localhost", port=8080, debug=True, reloader=True)
html
1<html lang=jp> 2 <head> 3 </head> 4 <body> 5 <form action="/switch",method="POST"> 6 <p>何か入力</p> 7 <input type="text" name="test" /> 8 <input type="submit" value="送信"> 9 % 10 {{mes}} 11 % end 12 </form> 13 </body> 14</html>
どうぞよろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/14 22:55