0
有職位和一些其他的資源與評論(多態關聯)未初始化的不斷聯繫:: CommentsController
的ActionController :: RoutingError在/管理/職位/ 1 /評論/新
路線
namespace :admin do
resources :posts do
resources :comments
end
end
。
<%= link_to "Comment", [:new, @commentable, :comment] %>
posts_controller
def show
@post = Post.find(params[:id])
@commentable = @post
@comments = @commentable.comments
@comment = Comment.new
end