我在我的 Rails 应用程序中使用 simple_form,我尝试将form-horizontal
类添加到我的表单中。
<form accept-charset="UTF-8" action="/account/orders" class="simple_form new_order" data-validate="true" enctype="multipart/form-data" id="new_order" method="post" novalidate="novalidate">
当我使用html: { class: "form-horizontal" }
它时更改class="simple_form new_order"
为class="simple_form form-horizontal"
.
我应该怎么做才能继续new_order
上课?