我正在尝试使用 mongoid 但它输出此错误:
未初始化的常量“Mongo”
这是我的代码:
require "mongoid"
Mongoid.configure do |config|
config.master = Mongo::Connection.new("localhost",27017).db("arthist")
end
class Artist
include Mongoid::Document
field :name, type: String
end
a = Artist.create(name: "hoge")
你有什么主意吗?