ruby 2,rails 4
我正在开发一个使用/ Gemfile
进行内部编辑的应用gem 'best_in_place', :git => 'https://github.com/aaronchi/best_in_place.git'
更新属性一切正常。例如
<td>
<%= best_in_place_if signed_in?,
@entrance, :scene_id,
:type => :checkbox,
:collection => ["No", "Yes"],
:nil => "*" %>
</td>
创建一个PUT请求来更新布尔值。
是否有办法创建POST请求来代替创建新实例。我可以以某种方式将其集成到一个给定的选项中吗?语法是什么?很高兴能够以这种方式完全省略_form partial和new.html.erb。