मेरे पास एक मॉडल (CustInfo) है, जिसमें 3 विशेषताएँ हैं: cust_name, आयु, लिंग। मेरे विचार संपादित में, मैं प्रपत्र प्रस्तुत करने के लिए 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 %>
मेरी नियंत्रक में मैं
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"}.
ऐसा लगता है कि लिंग को पैरा के माध्यम से पारित किया जाता है, लेकिन यह पैराम्स [: मॉडल] में नहीं है, इस मामले में पैरा [: custinfo] और यही कारण है कि अद्यतन फ़ंक्शन इस मान को अपडेट नहीं करेगा (becaus ई मैं केवल Cust.update_all (पैराम्स [: custinfo]) था)। मेरा सवाल यह है कि क्यों यह रेडियो बटन पैराम्स [: custinfo] में नहीं है, जबकि अन्य दो हैं? और मैं पैराम्स [: custinfo] के अंदर रेडियो बटन मान कैसे पारित कर सकता हूं? धन्यवाद!
आप दोनों मामलों को सही कर रहे हैं। धन्यवाद! – swingfuture