0

我怎样才能在评论本身上方有一个评论表格。

作品

@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
4

1 回答 1

1

控制器

@post = Post.find(params[:id])
@comment = @post.comment.new

看法

form_for @comment do |f|
  ...
end

@post.comments.each do |comment|
  comment.id
end
于 2012-06-26T22:13:03.020 回答