我第一次尝试配置和使用 mongoid。我将 mongoid.yml 配置文件设置为:
主机:本地主机
数据库:表
和我的代码:
Mongoid.load!("/mongoid.yml")
class Data
include Mongoid::Document
field :study, type: String
field :nbc_id, type: String
field :short_title, type: String
field :source, type: String
field :start_date, type: Date
end
puts Data.study
我不断收到错误消息:
NoMethodError at / undefined method `study' for Data:Class
我认为这是因为我没有指定集合名称“测试”。但是,我找不到有关如何执行此操作的示例。我是在 .yml 文件中还是在代码中指定它。什么是正确的语法。谁能指出我正确的方向?
德克萨斯州。