gpt4 book ai didi

ruby-on-rails - rails form_for 中的单选按钮值不是参数的一部分 [:model]

转载 作者:行者123 更新时间:2023-12-04 03:35:01 25 4
gpt4 key购买 nike

我有一个模型 (CustInfo),它包含 3 个属性:cust_name、年龄、性别。在我的编辑 View 中,我使用 form_for 进行表单提交:

<%= form_for @cust[0] do |cust| %>
<label for="cname">Customer name: </label>
<%= cust.text_field :cust_name, :size => 20 %>

<label for="age">Customer age: </label>
<%= cust.text_field :age, :size => 5 %>

<label for="gender">Gender </label>
<%= radio_button_tag(:gender, "F", :checked => (:gender == 'female')? true:false) %><span style="float:left">F</span>
<%= radio_button_tag(:gender, "M", :checked => (:gender == 'male')? true:false) %><span style="float:left">M</span>
<%= cust.submit "Save" %>
<% end %>

在我的 Controller 中,我有
def update
if Cust.update_all(params[:custinfo])
flash[:notice] = "Successfully updated!"
redirect_to :action => "index"
else
flash[:notice] = "There are errors in the form, please try again"
render :action => "edit"
end
end

当我按下提交按钮时,表单提交,其参数如下:
Parameters: {"utf8"=>"✓", "authenticity_token"=>"I9QEdP1mRr65wT9TRbzNokkaa+LHVyPfmgWJMKoup", "custinfo"=>{"age"=>"16", "cust_name"=>"jsmith"}, "gender"=>"M","commit"=>"Save"}.

看起来性别确实通过参数传递,但它不在 params[:model] 中,在这种情况下是 params[:custinfo],这就是为什么更新函数不会更新这个值(因为我只有 Cust.update_all(参数[:custinfo]))。我的问题是为什么只有这个单选按钮不在 params[:custinfo] 中,而其他两个在?以及如何在 params[:custinfo] 中传递单选按钮值?谢谢!

最佳答案

尝试更换您的 radio_button_tag调用 cust.radio_button以便 Rails 知道这些单选按钮适用于您的 Customer 模型。

您还可以简化 :checked => (:gender == 'female')? true:false只是 :checked => (:gender == 'female')因为 == 运算符给出了一个 bool 结果。

关于ruby-on-rails - rails form_for 中的单选按钮值不是参数的一部分 [:model],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9420374/

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