next comment
按鈕應指向http://localhost:3000/articles/14/comments/70
。Ruby on Rails:控制器未評估方法
它目前執行的是:http://localhost:3000/articles/14/comments/56/next_comment
怎樣才能解決這個問題?
#button
= link_to "next comment", next_comment_article_comment_path(@article, @comment)
#controller
class CommentsController < ApplicationController
def next_comment
@comment ||= @scope.next(@comment)
end
def scope
@scope ||= @article.comments
end
end
UPDATE
#routes.rb
resources :articles do
resources :comments do
member do
get 'next_comment'
end
end
end
你可以更新'routes.rb'代碼的問題? – Pavan
完成!謝謝... – Liroy
任何線索是怎麼回事? – Liroy