码迷,mamicode.com
首页 > 其他好文 > 详细

消息闪现

时间:2018-01-21 12:39:34      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:ruby   rect   success   redirect   iss   down   button   sage   link   

消息闪现

放在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'

消息闪现

标签:ruby   rect   success   redirect   iss   down   button   sage   link   

原文地址:https://www.cnblogs.com/dccmmtop/p/8323581.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!