我正在使用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
帮助任何人?
答案 0 :(得分:0)
Mongoid::MultiParameterAttributes
已从Mongoid中移除,目前整个事情都在Rails 4中播出。