2014-09-03 31 views
0

或者也許有人知道更好的ajax flash通知系統?(編輯)Rails Gritter Ajax設置

我掙扎得到更堅韌(https://github.com/RobinBrouwer/gritter)通知與阿賈克斯的工作,這是我走到這一步:

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(在這裏嘗試了很多事情,似乎沒有任何工作)

<%= 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 %> 

的錯誤之一沒有得到這樣繼續下去了,.to_s固定它。但仍然沒有得到消息

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' 

不太清楚如何設置它,嘗試了很多不同的方式;/

回答

0

這是爲我工作: 在你的js文件把

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