1

我正在尝试从表单中获取单选按钮的值:

<%= form_for Text.new, remote: true do |f| %>
<%= f.radio_button :is_code, false %>
<%= f.text_area(:content, :size => '50x10', :class=>'input_text')%>
<%= f.submit "Send", :class=>'input_send' %>
<% end %>

现在,当我检查控制器中的参数时:

  def create
    response.headers["Content-Type"] = "text/javascript"
    attributes = params.require(:text).permit(:content, :name, :is_code)
    attributes[:name]=current_user.name
    Rails.logger.info attributes[:is_code]
    attributes[:content]='code was given' if attributes[:is_code]==true
    @message = Text.create(attributes)
  end

现在,如果未单击单选按钮,我得到的值为空。(我指定了一个默认值,为什么这给我 null?)

如果单击单选按钮,Rails 记录器会给我错误。

它在 null/false 之间切换,而不是在 false/true 之间切换。有任何想法吗?

4

1 回答 1

1

正如文档所述,第三个参数是 HTML 对象的值。http://api.rubyonrails.org/classes/ActionView/Helpers/FormHelper.html#method-i-radio_button

因此,我相信您必须将其设置为 true,如下所示:

<%= f.radio_button :is_code, true %>

然后,如果没有检查,你会得到这个false/null值,而不是检查收音机,你会得到这个true值。

于 2013-02-18T12:18:07.460 回答