评论意见形式如上

时间:2012-06-26 22:05:39

标签: ruby-on-rails

我如何在评论本身上方提供评论表。

作品

@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

1 个答案:

答案 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