2011-08-23 37 views
2

我打電話這一點,這個錯誤發生ratings_for得到錯誤在我的文章索引視圖ajaxful_rating_jquery

未定義的方法`singular_class_name」爲的ActionController :: RecordIdentifier:模塊

提取的源(左右線#20):

17:<%= post.name%>

18:<%= post.description%>

19:<%#=調試%>

20:<%= ratings_for交,:靜態,:小=>真,:尺寸=>:速度%>

21:<%#= ratings_for後,:靜態,:小=>真實,:尺寸=>:美容%>

22:<%#= ratings_for後,:靜態,:小=>真實,:尺寸=>:價格%>

23:<%= link_to'顯示',帖子如果可以? :表演,後期%>

回答

0

我固定它由地方按照寶石:寶石 'ajaxful_rating', '3.0.0.beta6'

then bundle:update 

    my routes: 

Contest::Application.routes.draw do |map| 

map.resources :users, :member => {:rate => :post} do 
    |nested| nested.resources :posts  
end 

嘗試請....

2

我固定它由地方按照寶石:

我的路由更新: gem 'ajaxful_rating', '3.0.0.beta6'

然後捆綁

Contest::Application.routes.draw do |map|

map.resources :users, :member => {:rate => :post} do |nested| nested.resources :posts end

但似乎像:星選項沒有正常工作(5星總是我甚至想要顯示10顆星)

嘗試一下。

相關問題