0
我不明白在哪裏:post_id和:評論來自「創建」操作。 from_for函數中沒有提及它們。 http://guides.rubyonrails.org/getting_started.html「7.4生成器」:理解參數時遇到問題
class CommentsController < ApplicationController
def create
@post = Post.find(params[:post_id])
@comment = @post.comments.create(params[:comment])
redirect_to post_path(@post)
end
end