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 に答える