Rails - 表列表 - 值作为复选框

时间:2016-09-01 11:08:40

标签: ruby-on-rails ruby-on-rails-5

在列表(index.html.erb)中,如何将布尔字段的值显示为check_box?

<td><%= annotation.active %></td>

目前它列为&#34; true&#34; /&#34; false&#34;。

2 个答案:

答案 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