我想从下拉菜单中选择一个值并相应显示网页。目前,我可以通过在URL的末尾键入下拉列表来访问每个值。我到底在想什么?在浏览器中输入/metadata/table_name1
metadata/table_name2
后,我便可以访问它。但是,当我从下拉菜单中选择选项时,我将无法获得它。下拉菜单应重定向到metadata/drop_down_value
。
我已经通过打印出单独的网址路由链接进行了测试。通过单击链接,它可以工作。我需要从下拉列表中进行选择。
观看次数:
@app.route('/metadata', methods=['GET', 'POST'])
def metadata():
cols = None
table = None
db_uri = session.get('db_uri', None)
eng = create_engine(db_uri)
insp = reflection.Inspector.from_engine(eng)
tablenames = insp.get_table_names()
form = SelectTableForm()
form.table_name.choices = tablenames
cols = insp.get_columns(table_name=tablenames[0])
eng.dispose()
return render_template('tables.html', cols=cols, table=tablenames[0], form=form)
@app.route('/metadata/<table>', methods=['GET', 'POST'])
def select_table(table):
form = SelectTableForm()
db_uri = session.get('db_uri', None)
eng = create_engine(db_uri)
insp = reflection.Inspector.from_engine(eng)
tablenames = insp.get_table_names()
form.table_name.choices = tablenames
cols = insp.get_columns(table_name=table)
return render_template('tables.html', cols=cols, table=table, form=form)
表格:
class SelectTableForm(FlaskForm):
table_name = SelectField(label='Table name', choices=[], coerce=int)
Jinja html:
<!-- This works -->
{% for table in form.table_name.choices %}
<a href="{{ url_for('select_table', table=table) }}">{{ table }}</a>
{% endfor %}
<!-- This does not -->
<form action="">
<select name="tables" method="POST" type="submit">
{% for table in form.table_name.choices %}
<option value="{{ url_for('select_table', table=table) }}">{{ table }}</option>
{% endfor %}
</select>
</form>
<table>
<tr>
<th>table</th>
<th>name</th>
<th>type</th>
<th>nullable</th>
<th>default</th>
<th>autoincrement</th>
<th>comment</th>
</tr>
{% for col in cols %}
<tr>
<td>{{ table }}</td>
{% for val in col.values() %}
<td>{{ val }}</td>
{% endfor %}
</tr>
{% endfor %}
</table>
答案 0 :(得分:1)
您需要一些js,在其中将当前页面的url设置为select元素中的所选选项的值:onchange="location = this.value;"
。
from flask import Flask, render_template_string
app = Flask(__name__)
@app.route('/')
def homepage():
return render_template_string('''
<select name="form" onchange="location = this.value;">
{% for table in tables %}
<option value="{{ url_for('select_table', table=table) }}">{{ table }}</option>
{% endfor %}
</select>
''', tables = ['a', 'b'])
@app.route('/select_table/<table>', methods=['GET', 'POST'])
def select_table(table):
return table