flask flash message 怎么看不见
1 回答
慕少森
TA贡献2019条经验 获得超9个赞
仅调用flash只是发给客户端一条信息,不负责显示的。
显示Flash的信息需要在模板中使用
get_flashed_messages()函数获取Flash的信息,并渲染信息。
例如:
{% for msg in get_flashed_messages() %}
<div>{{msg}}</div>
{% endfor %}
- 1 回答
- 0 关注
- 702 浏览
添加回答
举报
0/150
提交
取消