我正在创建一个非常基本的表单,其中 formtastic 和 mongoid 作为 ORM。现在我首先尝试手动设置我的字段类型,但我得到了同样的错误。现在我也应用了这个“补丁”,所以字段类型会像 ActiveRecord 一样自动映射,但我仍然遇到同样的问题:
Unable to find input class for date_select
或者
Unable to find input class for datetime_select
这是我的模型
class Event
include Mongoid::Document
paginates_per 25
field :title, type: String
field :date, type: Date
field :place, type: String
end
所以这是非常基本的。我正在使用 ruby-1.9.3-p194、formtastic (2.2.1) 和 mongoid (3.0.13),但我认为这个问题与 mongo 无关。我怀疑formtastic是这里的问题。有没有人遇到过同样的问题?非常欢迎任何提示!