gpt4 book ai didi

ruby-on-rails - 如何将 bool 值设置为 rails 4 形式的单选按钮

转载 作者:行者123 更新时间:2023-12-03 16:10:34 26 4
gpt4 key购买 nike

我正在尝试为 rails 4 中表单中的单选按钮设置 true/false 值。我在 stackoverflow 上找到了一篇文章并相应地实现了我的单选按钮,但我总是将 false 作为值。

我的代码

  <div><%= label :access_rights, 'Read Only', :value => "false" %></div>
<%= f.radio_button :access_rights, "Read Only", :checked => true , false%></div>
<div><%= label :access_rights, 'Read and Write', :value => "true" %></div>
<%= f.radio_button :access_rights, "Read and Write", true %>

是否有不同的方法来设置 rails 4 中的单选按钮的值?

编辑:

在我的 Controller 中
def access_params
params.require(:accessor).permit(:email, :access_rights)
end

参数:
{"utf8"=>"✓",
"authenticity_token"=>"t/da2RRBi4KsyndnHx4WNZLoOHu9DVlAWtl/59NPiMc=",
"accessor"=>{"accessor_id"=>"email",
"access_rights"=>"Read and Write"},
"commit"=>"Grant Permission"}

最佳答案

我相信其他答案的标签不会正常工作。这是一个更正标签的示例。

<div>
<%= label :access_rights, "Read Only", value: false %>
<%= f.radio_button :access_rights, false, :checked => true, :value => false %>
</div>

<div>
<%= label :access_rights, "Read and Write", value: true %>
<%= f.radio_button :access_rights, true, :value => true%>
</div>

关于ruby-on-rails - 如何将 bool 值设置为 rails 4 形式的单选按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19339137/

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