4

我的 Rails 3.2.13 应用程序使用一个复选框数组(同一字段名称的多个可能值),带有标签:

%table
  %tr
    %td
      = check_box_tag 'fruits[]', 'apple'
    %td
      = label_tag 'fruits[apple]', 'I like Apples'
  %tr
    %td
      = check_box_tag 'fruits[]', 'banana'
    %td
      = label_tag 'fruits[banana]', 'I like Bananas'

表单正确提交 params 中的复选框为 params[:fruits] => ['apple', 'banana']

但是标签坏了——点击标签什么也没做。(因为 html 标签标签的 for = 'fruits_xxxx' 但所有复选框的 ID 只是 id = 'fruits_' 所以标签不与复选框关联。)

如何以正确关联其 check_box_tag 的方式指定 label_tag?(我也尝试使用 :value 作为标签标记,例如= label_tag 'fruits[]', I like Apples', :value => 'apple',但这也不起作用)

注意:我最接近的是使用标签标签的块格式(将复选框放在标签内),就像标签下面一样,但是,使用块结构可以防止将复选框和标签放在单独的单元格中:

= label_tag do
  = check_box_tag 'fruits[]', 'apple'
  I like Apples
= label_tag do
  = check_box_tag 'fruits[]', 'banana'
  I like Bananas
4

3 回答 3

8

You can pass checkbox attributes to check_box_tag method as fourth argument. In this case you need to set id equal to label's "for" attribute.

%td
  = check_box_tag 'fruits[]', 'apple', params[:fruits] && params[:fruits].include?('apple'), :id => 'fruits_apple'
%td
  = label_tag 'fruits_apple', 'I like Apples'
于 2013-06-02T20:08:09.287 回答
4

如果有人通过谷歌搜索来到这里,如果您使用的是更正确的答案form_for

%td
  = f.check_box :fruits, { multiple: true }, 'apple'
%td
  = f.label :fruits, 'I like Apples', value: 'apple'
于 2015-01-19T10:34:20.767 回答
1

对于那些使用 Rails 6 并最终来到这里的人:

<% fruits.each_with_index do |fruit, idx| %>
  <%= f.check_box :fruits, {multiple: true, id: "fruit_#{idx}"}, fruit %>
  <%= f.label fruit, for: "fruit_#{idx}" %>
<% end %>
于 2020-07-05T16:57:15.807 回答