1-我安装了gem bootstrap_form
2-我在application.css中写道,行* =在* /之前需要bootstrap_form
3-在我的html.erb中
<%= bootstrap_form_for(@guardian,:url => student_guardians_path(@student),html: { class: 'form-horizontal' },method: :post) do |f| %>
我收到以下错误:undefined methodbootstrap_form_for’for#<#:0xb31a80c>`
我得到了同样的
错误.通过替换修复它
gem 'bootstrap-form'
通过
gem 'bootstrap_form'
在我的gemfile中
原文链接:https://www.f2er.com/ruby/268980.html