我试图应用bootstrap类" form-horizontal center"我的rails form_for帮助如下:
<%= form_for(@customer), :html => {:class => "form-horizontal center"} do |f| %>
我收到语法错误。
我没有运气看过这个:How to add a class to the form_for helper in a Rails 4 app?
有什么想法吗?
答案 0 :(得分:1)
<%= form_for @customer, :html => {:class => "form-horizontal center"} do |f| %>
从@customer
移除括号或在do
之前移动右括号:
<%= form_for(@customer, :html => {:class => "form-horizontal center"}) do |f| %>