7.6 消息闪现、SecretyKey与变量作用域
1.在视图函数中配置闪现消息
flash("hello,wenfeng", category="success")
flash("hello,jiagndan", category="warning")2.在html中使用闪现消息
{% set message = get_flashed_messages() %}
{{ message }} {% with message = get_flashed_messages() %}
{{ message }}
{% endwith %}Last updated
Was this helpful?