我必須閱讀現有的mongo數據庫。 mongoid適合這個嗎?閱讀現有的mongo數據庫
我發現的所有教程都是關於從零開始構建mongo數據庫的。
我試過使用mongoid訪問數據庫,沒有運氣顯示現有信息,這是我試過的。
mongoid.yml:
development:
host: localhost
database: managementdb
test:
host: localhost
database: managementdb
我做了一個支架(我不喜歡mongoid如何接管腳手架)
模型:
class GamerProfile
include Mongoid::Document
store_in :profile
field :facebookId, :type => String
field :playerName, :type => String
field :locale, :type => String
field :dateJoined, :type => Time
end
但在現有的信息localhost:27017/managementdb/Profile未在視圖中顯示。
我只需要只讀訪問。 mongomapper或mongomodel會更適合嗎?
你的意思是「Mongoid適合這個嗎?」? – 2012-03-01 09:29:52
是的這就是我的意思。 – 2012-03-01 09:31:08