flaskでフォームからPOSTで受け取った値を指定のプログラムに挿入したいです。
構成は以下の通りです。
test(ディレクトリ) templates(ディレクトリ) index.html app.py test.py run.py
app.pyには
@app.route("/", methods=["GET", "POST"])
def index():
return render_template
などWEBページ表示に必要な記載をしています。
以下test.pyです。
def test(): address02 = Address('この部分にフォームで入力された値を入れたいです。')
以下index.htmlです。
<p>address:<br> <form action = "/ここもわかりません" method = "POST"> <input type="text" name="name" style="width:400px;"></p> <input type="submit" value="addressを入力する"><br>
回答1件
あなたの回答
tips
プレビュー