为了账号安全,请及时绑定邮箱和手机立即绑定

python flask flash消息闪现

标签:
Html/CSS Python

flash 消息闪现

很多人都不用flash这个组件,其实特别好用。

好的应用和用户界面的重点是回馈。如果用户没有得到足够的反馈,他们可能最终会对您的应用产生不好的评价。Flask 提供了一个非常简单的方法来使用闪现系统向用户反馈信息。闪现系统使得在一个请求结束的时候记录一个信息,然后在且仅仅在下一个请求中访问这个数据。这通常配合一个布局模板实现。

具体请查看: http://docs.jinkan.org/docs/flask/patterns/flashing.html

标准的bootstrap

template html

利用bootstrap的类的方法名来做这类的事情
success : 为绿色的
danger : 为红色的
warning : 为×××的

/templates/flash.html

<body class="gray-bg">
<!--通知消息处-->
    {% with messages = get_flashed_messages(with_categories=true) %}
      {% if messages %}
        {% for category, message in messages %}
            <div class="alert alert-{{ category }}" style="text-align: center">
            <button aria-hidden="true" data-dismiss="alert" class="close" type="button">×</button>
            <strong>{{ message }}</strong></div>
        {% endfor %}
      {% endif %}
    {% endwith %}
</body>

controller action

下一个访问请求之中获取这个数据
/main.py

app.route("flash")
def view_flash()
    flash(message, action)
    action = ["success", 'error', 'danger'] ...
    return render_template("flash.html")

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消