前提・実現したいこと
以下のようにFlaskを用いてフォームに値を入れて送信すると入力した値が表示されるコードを作成しました。
このコードは問題なく動くのですがコード内容に違和感を感じるようになりました。
それは一番最初にFlaskを起動した時はif request.method の判定は出来ないではないかということです。
return render_template('index.html',username=username,comment=comment)
が実行されてからようやくHTMLファイルが読み込まれると思っています。
if request.methodの判別はその段階から始まると思っているので、どうしてもPythonのファイルを実行した時点ですでにif request.method == 'GET':を通ってHTMLファイルを表示できることが理解出来ません。
どうしてこのコードでif request.method == 'GET':をクリアできるのか、そしてそもそも私のどの部分の認識が間違っているのかをご指摘いただけると幸いです。
宜しくお願い致します。
該当のソースコード
python
1 2from flask import Flask,render_template,request 3app = Flask(__name__) 4 5 6 7@app.route('/',methods=['GET','POST']) 8def hello_world(): 9 if request.method == 'GET': 10 return render_template('index.html') 11 if request.method == 'POST': 12 username = request.form['username'] 13 comment = request.form['comment'] 14 return render_template('index.html',username=username,comment=comment) 15 16if __name__ == "__main__": 17 app.run(debug=True)
HTML
1<!DOCTYPE html> 2<html lang="en"> 3<head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 <title>flask6</title> 7</head> 8<body> 9 10 <form action="/" method="POST"> 11 <p>名前</p> 12 <input type="text" name="username" value=""> 13 <p>コメント</p> 14 <input type="text" name="comment" value="" style="width:300px; height:150px;" required><br> 15 <button>送信</button> 16 </form> 17 <h3>{{ username }}</h3> 18 <p>{{ comment }}</p> 19</body> 20</html>
試したこと
Flaskはクライアント側なのかと思い調べましたが違うという結論に至りました。
###使用環境
python 3.7.3
Flask 1.1.1
使用ブラウザ:Google Chrome
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/16 04:32