ruby-on-rails – bootstrap_form错误未定义方法

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – bootstrap_form错误未定义方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
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

猜你在找的Ruby相关文章