weixin_33724659 2014-09-03 23:47 采纳率: 0%
浏览 7

Rails Gritter Ajax设置

OR Maybe someone knows a better flash notification system for ajax??? (edit)

I'm struggling to get the grittier( https://github.com/RobinBrouwer/gritter ) notification working with ajax, this is what I got so far:

application.html.erb

<%= gflash %>
<%= gflash :js => true %>

request_fr.rb

  def request_fr
  respond_to do |format|
    format.js{}
        gflash :now, :notice => "TEST gflash :now, :notice =>"
        gflash :success => "TEST2 gflash :success => "
      end
  end

request_fr.js.erb (tried many things here, nothing seems to work)

<%= js add_gritter(flash[:notice].to_s, :image => :notice, :title => "Pay attention!", :sticky => true) %>
<%= gflash :js => true %>
 <% if flash.now[:notice] %>
    $.gritter.add({
      title: '--',
      text: '<%= escape_javascript(flash.now[:notice].to_s) %>'
    });
  <% end %>

one of the errors DONT GET THIS ANYMORE, .to_s fixed it. but still don't get the message

Rendered friendships/request_fr.js.erb within layouts/application (2.7ms)
Completed 500 Internal Server Error in 97ms

NoMethodError - undefined method `gsub' for ["TEST gflash :now, :notice =>"]:Array:
  actionpack (3.2.13) lib/action_view/helpers/javascript_helper.rb:30:in `escape_javascript'
  gritter (1.1.0) lib/gritter/helpers.rb:19:in `add_gritter'
  app/views/friendships/request_fr.js.erb:1:in `_app_views_friendships_request_fr_js_erb__426745901290841
9434_2281294440'

Not quite sure how to set it up, tried a lot of different ways ;/

  • 写回答

1条回答 默认 最新

  • weixin_33743661 2015-06-30 13:41
    关注

    This is working for me: In your js file put

         <%= add_gritter("Notice", :image => :success, :title => "Notice" ) %>
    
    评论

报告相同问题?