无法将数据从烧瓶传递到 html 模板

not being able to pass a data from flask to html template

我正在使用一个非常简单的代码将数据从 Flask 传递到 html 模板 但该值未通过 这是小米代码

python代码:

 @app.route("/",methods=['GET','POST']) 
 def home():
     if request.method=='GET':
         return render_template("base.html")
 
     if request.method=='POST':
         
 
         print('hello')
         resultat="helo"
         a=True
         return render_template("base.html",resultat=resultat)

html代码:

<p> {%if a %} {{ resultat }} {% endif %} </p>

有人可以帮我吗

问题是您没有将 a 传递给模板。

return render_template("base.html", resultat=resultat, a=a)

另外,你是说 result 吗?