我想用 link_to 按钮调用 2 个不同的操作。当我放置以下代码时,按钮仅显示为蓝色链接,并且不会调用第二个操作。有人知道解决这个问题的策略吗?
<%= link_to "Remove from Cabinet", { :controller => 'devices', :action => 'detach_device_from_cabinet', :id => device.id },
{ :controller => 'cabinets', :action => 'unmark_validated', :id => @cabinet.id }, :class => "btn btn-danger", :confirm => "Detach Device: are you sure?" %>
谢谢。