单选字符串的单选按钮:无法获取字符串的值

时间:2015-11-02 14:52:27

标签: ruby-on-rails radio-button simple-form

我必须在我的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"}

你能帮忙吗,谢谢。

0 个答案:

没有答案