我正在尝试在我的网站上生成一个来自python列表的数据列表。
我的html文件是这样的:
<!DOCTYPE html>
<html>
<body>
<form>
<input list="hschools" name="hschool">
<datalist id="hschools">
{% for elem in hsch %}
<option value= {{elem}}>
{% endfor %}
</datalist>
<input type="submit">
</form>
</body>
</html>
并保存在trying.html
中我的main.py文件是:
from flask import Flask,render_template
app=Flask(__name__)
@app.route("/")
def index():
hsch=["a","b","c"]
return render_template("trying.html")
if __name__=="main":
app.run()
然后我尝试运行网络应用程序,但我什么也得不到。你能看到我的错误吗? 也许我没有正确运行...谢谢!
答案 0 :(得分:1)
render_template
需要传递hsch
:
return render_template("trying.html", hsch=hsch)