我如何在评论本身上方提供评论表。
作品
@post = Post.find(params[:id])
@post.comments.each do |comment|
comment.id
end
@post.comments.build
# form here
end
渴望但失败
@post = Post.find(params[:id])
@post.comments.build
# form here
end
@post.comments.each do |comment|
comment.id
end
答案 0 :(得分:1)
控制器
@post = Post.find(params[:id])
@comment = @post.comment.new
视图
form_for @comment do |f|
...
end
@post.comments.each do |comment|
comment.id
end