自定义 collection_check_boxes
Customising collection_check_boxes
<%= f.collection_check_boxes(:post, :author_ids, Author.all, :id, :name_with_initial) do |b| %>
<% b.label { b.check_box + b.text } %>
<% end %>
以上代码将 html 输出为
<label tag>
<input checkbox tag></checkbox>
value of b.text
</label>
是否可以修改为html(即label tag after input tag
)输出为
<input checkboxtag></checkbox>
<labeltag>
value of b.text
</labeltag>
尝试了 collection_check_boxes
的各种组合,但未能成功。
<%= f.collection_check_boxes(:post, :author_ids, Author.all, :id, :name_with_initial) do |b| %>
<%= b.check_box %>
<%= b.label %>
<% end %>
<%= f.collection_check_boxes(:post, :author_ids, Author.all, :id, :name_with_initial) do |b| %>
<% b.label { b.check_box + b.text } %>
<% end %>
以上代码将 html 输出为
<label tag>
<input checkbox tag></checkbox>
value of b.text
</label>
是否可以修改为html(即label tag after input tag
)输出为
<input checkboxtag></checkbox>
<labeltag>
value of b.text
</labeltag>
尝试了 collection_check_boxes
的各种组合,但未能成功。
<%= f.collection_check_boxes(:post, :author_ids, Author.all, :id, :name_with_initial) do |b| %>
<%= b.check_box %>
<%= b.label %>
<% end %>