我試圖將thumbs_up gem實現到我的應用中,即使我有路由對於vote_up行動沒有路由匹配{:action =>「vote_up」,:controller =>「posts」} thumbs_up的錯誤
我的帖子控制器看起來像
def vote_up
begin
current_user.vote_for(@post = Post.find(params[:id]))
render :nothing => true, :status => 200
rescue ActiveRecord::RecordInvalid
render :nothing => true, :status => 404
end
end
我的路線看起來像
resources :posts do
get :vote_up, :on => :member
resources :comments
end
我不知道是什麼問題,如果有人可以幫助我,或指向我一個教程使用會很棒的thumbs_up寶石。
你能分享你的視圖代碼嗎? – rb512
'current_user.vote_for(@post = Post.find(params [:id]))'。恕我直言,作爲一種方法的參數也是不好的編程習慣。 – tokland