Mongoid 4 多参数属性与 Rails 4



我正在使用 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

帮助任何人?

Mongoid::MultiParameterAttributes从Mongoid中删除,整个事情目前在Rails 4中悬而未决。

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

相关内容

  • 没有找到相关文章

最新更新