如何在Rails 3中使用formtastic在acts_as_commentable中创建远程表单?
|
我正在使用acts_as_commentable。这是模型添加注释的方式:
commentable = Post.create
commentable.comments.create(:title => \"First comment.\", :comment => \"This is the first comment.\")
宝石的详细信息可以在这里找到:
https://github.com/jackdempsey/acts_as_commentable
在形式上,我通常会传递模型,然后输入字段....仍然可以使用吗?
<%= semantic_form_form \'review\' do |form| %>
<%= form.input :title %>
<%= form.input :comment %>
<% end %>
在控制器中....?
commentable.comments.create(params(:review))
我不确定这是否会传递可用的哈希....谢谢!
没有找到相关结果
已邀请:
1 个回复
为陡土
,您可以为远程表单传递
选项。