我正在尝试从我的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>


并保存在try.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()


然后,我尝试运行Web应用程序,但是我什么也没得到。可以看到我的错误吗?
 也许我运行不正确...谢谢!

最佳答案

render_template需要通过hsch

return render_template("trying.html", hsch=hsch)

08-28 20:47