我正在尝试使用mongoid_spacial
gem,这就是我的模型的样子:
class Place include Mongoid::Document include Mongoid::Spacial::Document field :name, :type => String field :source, type: Array, spacial: true field :mouth, type: Array, spacial: {lat: :latitude, lng: :longitude, return_array: true } spacial_index :source end
错误是
uninitialized constant Mongoid::Spacial::Document::ClassMethods::Mongo MONGOID: Attempted to constantize Property, trying without namespacing. MONGOID: Failed to determine model from app/models/property.rb: NameError:uninitialized constant Mongoid::Spacial::Document::ClassMethods::Mongo`
感谢任何帮助。