以联系方式(邮件)向check_box_tag添加类

时间:2018-04-04 15:43:11

标签: ruby-on-rails forms actionmailer form-helpers

我有一个带有复选框的联系表格,要求同意向用户发送电子邮件 - 因为在每个字段中都有一个密钥反馈给网站所有者。我正在尝试将一个类添加到复选框本身input-consent,但是当我尝试以下操作时:

<%= check_box_tag(:consent, class: "input-consent") %>

我收到此错误:

app/views/registrations/new.html.erb:56: syntax error, unexpected ',', expecting ')'.

我该怎么做这个?

1 个答案:

答案 0 :(得分:0)

请你试试这个吗?

<%= check_box_tag :consent, 1, false, class: 'input-consent' %>

Refer to check_box_tag here