我正在尝试学习使用远程表单并使用Post模型has_many评论的应用程序示例。
假设我使用通用rails脚手架来创建/设置帖子/评论模型,控制器,默认视图,路线等, - app/views/posts/show.html
应该是什么样的?
具体我对此感到困惑:
f.hidden_field :post_id, :value => @post.id
谢谢!
答案 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