我正试图使一个网站,显示文本我可以改变(最好立即)。我可以这样做:
@app.route('/')
def index():
global val
return str(val)
以及同时运行的函数允许我更改变量" value ">
但是,现在我希望能够显示数据并从用户接收数据。为了做到这一点,我使用了一个HTML模板,但是我不能立即改变HTML文件中的数据,所以我不能轻易地改变数据。
@app.route('/')
def index():
return render_template('form.html')
我希望能够显示这个HTML模板,和变量" value "同时。我试过了:
@app.route('/')
def index():
global val
return str(val), render_template('form.html')
但这也不工作,它给出了一个错误。
Inrender_template("form.html" , str=str)
在form.html
<body>
<p>{{str}}</p>
</body>
这样使用jinja
语法你可以显示变量
谢谢