0

我正在尝试使用简单表单创建一个表单。出于某种原因,我无法更改表单的类。我正在使用以下代码:

<%= simple_form_for @presentation, url: send_out_emails_path, 
    defaults: {input_html: { :class => 'form-horizontal' } } do |f| %>
    <!-- Form content here !-->
<% end %>

它正在生成这个html:

<form action="/sendout" class="simple_form edit_presentation" id="edit_presentation_152" method="post" novalidate="novalidate">
     <!-- Form content here !-->
</form>

为什么班级没有改变?

4

0 回答 0