1
我正在練習rails guide中的帖子。在評論控制器我寫這樣,但它涉及到錯誤未定義的方法許可
class CommentsController < ApplicationController
def create
@post = Post.find(params[:post_id])
@comment = @post.comments.create(params[:comment].permit(:commenter, :body))
redirect_to post_path(@post)
end
end
感謝d解決方案及其工作 – venu
@然後你接受它作爲答案 –