2

私は持続したsimple_form宝石を使用しており、simple_formフォームのレンダリングエラーに従っています:

cant`t convert Symbol into String

ここに画像の説明を入力

= simple_form_for @student, html: { multipart: true, class: 'form-horizontal' } do |f|
  = f.input :email, disabled: true
  = f.input :birthdate
  = f.input :address_number
  = f.input :address_street
  = f.button :submit, class: "btn btn-primary pull-right"

# == Schema Information
#
# Table name: students
#
#  address_number          :string(255)
#  address_postalcode      :string(255)
#  address_street          :string(255)
#  approved                :boolean          default(FALSE), not null
#  ask_counter             :integer          default(0)
#  authentication_token    :string(255)
#  birthdate               :date

ここにeditビューがありStudentます:https://gist.github.com/ccbef8a0fb67a164efee

私の Gemfile: https://gist.github.com/00ec5a897a6cb88e0bab

gem github ページの問題: https://github.com/plataformatec/simple_form/issues/695#issuecomment-10495237

レール: 3.2.8 SF:2.0.3

それを修正する方法は?

4

1 に答える 1

2

その問題の解決策はここにあります: https ://github.com/plataformatec/simple_form/issues/695#issuecomment-10495237

于 2012-11-19T00:58:17.483 に答える