我必须在我的rails form(simple_form_for)中选择不同的字符串,但我无法获得提交的值。我在stack看到了答案,但没有一个能奏效。
这是我视图中的表单:
<%= simple_form_for(@prospect, url: new_client_special_order_path) do |f| %>
<%= f.radio_button :context, 'launch product' %>
<%= f.label :context, 'launch product', value: 'launch product' %>
<%= f.radio_button :context, "going abroad" %>
<%= f.label :context, "going abroad", value: "going abroad" %>
...
<% end %>
以下是参数:
{"utf8"=>"✓", "authenticity_token"=>"7yRCcJOitjlTN1PhueUfjRTCWR4FflFGIS0McCr/Zt5tHBmR+siSVEX+Sn7o6x6gtzbDlPfqH9ZOziQUG8meqw==", "prospect"=>{"context"=>""}, "commit"=>"Créer mon brief", "controller"=>"home", "action"=>"create_client_prospect_special"}
你能帮忙吗,谢谢。