gpt4 book ai didi

ruby-on-rails - 如何使用 boolean 值创建接受/拒绝按钮?

转载 作者:数据小太阳 更新时间:2023-10-29 08:43:49 25 4
gpt4 key购买 nike

我有接受/拒绝作为开关:

<%= form_for @dueler do |f| %>
<%= f.check_box :accept, class: 'someclass', :data => { 'on-text'=>'Decline', 'off-text'=>'Accept'} %>
<script>
$("[class='someclass']").bootstrapSwitch();
</script>
<%= button_tag(type: 'submit') do %>
Save
<% end %>
<% end %>

但我试图将它们变成两个单独的按钮。如果用户点击一个,如何使用适当的 :accept 值使其自动提交:

<%= button_tag(type: 'submit')  do %>
Accept # submits & makes :accept true
<% end %><br><br>

<%= button_tag(type: 'submit') do %>
Decline # submits & makes :accept false
<% end %>

最佳答案

您可以使用 f.button 传递您将在 Controller 中使用的参数:

在你看来:

<%= f.button "Accept", name: "button_action", value: "accept" %>
<%= f.button "Decline", name: "button_action", value: "decline" %>

在你的 Controller 中使用参数值:

if params['button_action'] == 'accept'
else
end

关于ruby-on-rails - 如何使用 boolean 值创建接受/拒绝按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38755102/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com