我怎样才能在评论本身上方有一个评论表格。
作品
@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