Flask - 消息闪现

Posted yugengde

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Flask - 消息闪现相关的知识,希望对你有一定的参考价值。

 1 @app.route(/)
 2 def index():
 3     flash(33333)
 4     flash(44444)
 5     flash(55555)
 6     flash(66666)
 7     if username in session:
 8         return render_template(test.html)
 9 
10     return render_template(test.html)

 

// test.html
1
<body> 2 {% with messages = get_flashed_messages() %} 3 {% for message in messages %} 4 {{ message }} 5 {% endfor %} 6 {% endwith %} 7 </body>

 

以上是关于Flask - 消息闪现的主要内容,如果未能解决你的问题,请参考以下文章

雷林鹏分享:Flask消息闪现

Flask框架从入门到精通之消息闪现和日志记录(二十一)

Flask框架从入门到精通之消息闪现和日志记录(二十一)

Flask框架从入门到精通之消息闪现和日志记录(二十一)

Flask - 消息闪现

python web开发-flask中消息闪现flash的应用