草庐IT

ruby-on-rails - Rails 上的 ruby : How to have multiple submit buttons going to different methods (maybe with with_action? )

coder 2025-05-28 原文

<分区>

所以..

<%= submit_tag 'Save', :name => 'save' %>
<%= submit_tag 'Save to Library', :name => 'library' %>

然后在我的 Controller 中:

with_action do |a|
    a.save do

    end

    a.library do

    end
end

问题是只有一个操作被调用...两个 submit_tags 调用相同的操作... 知道为什么吗?

或者我如何获得两个按钮以将表单提交给两种不同的方法?

有关ruby-on-rails - Rails 上的 ruby : How to have multiple submit buttons going to different methods (maybe with with_action? )的更多相关文章

随机推荐