2012-08-30 30 views
2

我試圖用mongoid但它輸出這樣的錯誤:Mongoid給未初始化的常量蒙戈

uninitialized constant '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") 

你有什麼想法?

+0

你使用的是什麼版本的Mongoid? –

回答

12

在您的Gemfile中包含gem mongo,並重新啓動服務器,它應該做的伎倆。

+0

感謝@abhas!有用! – nobinobiru

相關問題