可以吗
<%= link_to 'Item', {:controller => "items", :action => "update", :id => @item, :item => {:status => 'xxx'}}, :method => :put %>
用rails 3资源语法重写?
link_to "Item", @item, ...
答案 0 :(得分:0)
不,但你可以使用hamed helper:
link_to 'Item', item_path(@item, item: {status: 'xxx'}), :method => :put
您也可以尝试使用button_to而不是非GET链接。