我有一个双管齐下的问题,并希望得到任何建议。
1)我有一个烧瓶模板,里面有多个表格。每个表单向用户显示一个从mongodb查询动态生成的列表。
name_list = [p['name'] for p in posts.find({'type': "server"})]
name_list.insert(0, "select")
然后在我的html模板中引用它(再次感谢那位帮我解决上一个问题的人)
<select name="option" id="myselect" onchange="this.form.submit()">
{% for x in server_list %}
<option value="{{ x }}"{% if loop.first %} SELECTED{% endif %}>{{ x }}</option>
{% endfor %}
然后将此选择传递回python以在另一个数据库查询中使用,然后向用户显示另一个下拉选择框。但是,当提交第一个表单时,新页面呈现意味着该值现在在html上丢失并显示为空白。有没有办法让这个选择保持不变,所以在新页面渲染之后它仍然会出现?
2)其次,我想保留用户所做选项的运行列表,但是给定if,elif结构我使用该变量失去状态并且不能再使用。最后,我想向用户提供两组这些下拉菜单,以生成最终的db查询,我可以比较并返回差异,但是如果我能保持循环中生成的这些值的状态,我只能这样做。 / p>
请参阅以下完整代码:
蟒:
from flask import render_template
from flask import request
from flask import Response
from app import app
from pymongo import MongoClient
@app.route('/', methods=['POST','GET'])
@app.route('/index', methods=['POST','GET'])
def index():
user = {'name': 'Bob'}
client = MongoClient('mongodb://localhost:27017/')
db = client['test-database']
collection = db.test_collection
name_list = []
posts = db.posts
name_list = [p['name'] for p in posts.find({'type': "server"})]
name_list.insert(0, "select")
select_list = []
#if request.form['submit'] == 'myselect':
if request.method == 'POST' and request.form.get('option'):
choice = request.form.get('option')
select_list.append(choice)
sub_name_list = [q['type'] for q in posts.find({'name': choice})]
return render_template("index.html",
sub_server_list=sub_name_list)
elif request.method == 'POST' and request.form.get('option1'):
choice1 = request.form.get('option1')
select_list.append(choice1)
return render_template("index.html",
title='Database selector',
user='Person',
choiced=choice1,
total_choice=select_list)
return render_template("index.html",
title='Database selector',
user='Person',
server_list=name_list)
的HTML /神社:
<html>
<head>
<title>{{ title }} - Test</title>
</head>
<body>
<h1>Hi, {{ user }}!</h1>
<h2>Database selector</h2>
<h3><table><form action="" method="post">
<td>
<label>Select1 :</label>
<!--<select name="option" width="300px">-->
<select name="option" id="myselect" onchange="this.form.submit()">
{% for x in server_list %}
<option value="{{ x }}"{% if loop.first %} SELECTED{% endif %}>{{ x }}</option>
{% endfor %}
</select>
</td>
</form></table></h3>
<h3><table><form action="" method="post">
<td>
<label>Select2 :</label>
<select name="option1" id="sub_myselect" onchange="this.form.submit()">
{% for y in sub_server_list %}
<option value="{{ y }}"{% if loop.first %} SELECTED{% endif %}>{{ y }}</option>
{% endfor %}
</td>
</form></table></h3>
<h3>Here is the choice: {{ choiced }}</h3>
<h3>Here is the choice: {{ total_choice }}</h3>
</body>
</html>
非常感谢任何指针或想法。