Rails 3.1发布/评论博客模型 - 如何通过ajax提交评论?

时间:2011-10-31 01:03:01

标签: ruby-on-rails ruby ruby-on-rails-3 forms ujs

我正在尝试学习使用远程表单并使用Post模型has_many评论的应用程序示例。

假设我使用通用rails脚手架来创建/设置帖子/评论模型,控制器,默认视图,路线等, - app/views/posts/show.html应该是什么样的?

具体我对此感到困惑:

  1. 评论表格应该在哪里发布?
  2. 应包含哪些参数?
  3. 我是否需要使用隐藏属性,例如f.hidden_field :post_id, :value => @post.id
  4. 谢谢!

1 个答案:

答案 0 :(得分:5)

假设你的帖子有很多评论...

routes.rb(嵌套资源)

resources :posts do
  resources :comments
end

在你的comments_controller中

def create
  @post = Post.find(params[:post_id]
  @comment = @post.comment.build(params[:comment])
  if @comment.save
  ...
end

表格形式:

=form_for [@post, @comment], :remote => true do |f|
  =f.text_field :text
  =f.submit