消息闪现

Posted 梦里不知身是客

tags:

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

消息闪现

放在ApplicationHelper.rb中。在页面面中 <%= nitice_message %>

def notice_message
   flash_messages = []
      flash.each do |type, message|
        type = :success if type.to_sym == :notice
        type = :danger  if type.to_sym == :alert
        text = content_tag(:div, link_to(raw('<button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>'), '#', :class => 'close', 'data-dismi  ss' => 'alert') + message, class: "alert alert-#{type}")
        flash_messages << text if message
    end
    flah.clear
    flash_messages.join("\n").html_safe
    end

在控制器中:

redirect_to root_url,notice:'hello'

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

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

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

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

Flask 学习-65.消息闪现 flash

4.6 闪现消息

雷林鹏分享:Flask消息闪现