我想將此處的所有復選框設定為默認選中。我嘗試了一些方法,但不知何故無法讓它作業。
<div class="mr-6 text-xs">
<%= f.collection_check_boxes(:clazz, @staff.clazzes.map { |c|
[ ' ' c.name ' ', c.id]
}, :last, :first) %>
</div>
任何幫助或建議將不勝感激。
整個表格如下所示: https ://gist.github.com/somaria/7d2bd484b8a45fa0623337ec397dfd3e
uj5u.com熱心網友回復:
像這樣的東西
<div class="mr-6 text-xs">
<%= f.collection_check_boxes(:clazz, @staff.clazzes.map { |c| [ " #{c.name} ", c.id] }, :last, :first) do |b| %>
<%= b.label { b.check_box(checked: true) b.text } %>
<% end %>
</div>
轉載請註明出處,本文鏈接:https://www.uj5u.com/caozuo/484984.html
上一篇:重構2個正則運算式
