在列表(index.html.erb)中,如何将布尔字段的值显示为check_box?
<td><%= annotation.active %></td>
目前它列为&#34; true&#34; /&#34; false&#34;。
答案 0 :(得分:0)
使用check_box API表单FormHelper
<td><%= check_box_tag 'active', annotation.active %></td>
如果你想checked
使用
<td><%= check_box_tag 'active', annotation.active, true %></td>
有关详情reference。
应该工作!
答案 1 :(得分:0)
使用 check_box_tag 为true e.g
check_box_tag '', '', annotation.active , disabled: true