0

Rails 4フォームで日付ヘルパーを使用しています。

= date_select :press_article, :date

私のモデル:

class PressArticle
  include Mongoid::Document
  include Mongoid::MultiParameterAttributes
  field :title, type: String
  field :excerpt, type: String
  field :body, type: String
  field :date, type: Date
  field :press_name, type: String
  field :press_logo, type: String
  field :article_image, type: String
  field :article_url, type: String
end

ただし、新しい press_article を保存しようとすると、次のエラーが発生します。

uninitialized constant Mongoid::MultiParameterAttributes

誰か助けて?

4

1 に答える 1

0

Mongoid::MultiParameterAttributesは Mongoid から削除され、現時点では Rails 4 ですべてが宙に浮いています。

https://github.com/rails/rails/pull/8189

于 2015-05-22T19:25:44.210 に答える