それはあなたが何をしようとしての作品として、この例を参照してください。私はあなたのコードに間違っていることを正確にデバッグすることはできません。あなたが私に部品を提供し、彼らが何をしているのか分からないからです。
フォルダ構造
Test
|___templates
| |___things.html
|___Test.py
things.html
<form method="post">
<div class="col-sm-4 col-lg-4 col-md-4">
<select title="thing" class="form-control" id="myselect" name="thing" required>
<option value="" {% if thing=='' %} selected {% endif %} ></option>
<option value="Foo" name="Foo" id="Foo" {% if thing =="Foo" %} selected {% endif %} >Foo</option>
<option value="Bar" name="Bar" id="Bar" {% if thing =='Bar' %} selected {% endif %}>Bar</option>
</select>
<button type="submit">SEND</button>
</div>
</form>
Test.py
from flask import Flask, render_template, request
app = Flask(__name__)
PORT = 5000
@app.route('/things', methods=['GET', 'POST'])
def things():
"""
Accepts both GET and POST requests. If it's a GET request,
you wouldn't have a last selected thing, so it's set to an
empty string. If it's a POST request, we fetch the selected
thing and return the same template with the pre-selected
thing.
You can improve on this and save the last selected thing
into the session data and attempt to retrieve it from there.
"""
thing = ''
if request.method == 'GET':
return render_template('things.html', thing=thing)
else:
thing = request.form.get('thing', '')
return render_template('things.html', thing=thing)
if __name__ == '__main__':
app.run(port=PORT)
ここにあなたのサーバーサイドフローコードの例を掲載できますか?あなたが "リフレッシュ"と言うとき、私はそれがGETリクエストを送るべきであるページをリフレッシュするだけであることを意味します。フォームを使って情報をポストしないので、変数をどのように保存しているのか分かりません。 –
私は、POSTが発生したときに意味するように、リフレッシュという言葉を使用するよりも間違いました。私はPython/Flaskでこの質問を編集し、その変数を保存してどのように戻しているのですか? – MVS