我有一個包含400多項基本數據的單個集合的mongodb數據庫。將Rails應用程序連接到現有的Mongodb數據庫
我使用Rails和mongoid gem將兩者鏈接在一起,但是當我在rails控制檯中查詢我的模型時沒有找到任何條目。
QuizQuestion.first
息率沒有結果
我的模型:
class QuizQuestion
include Mongoid::Document
field :question, type: String
field :correctAnswer, type: String
field :wrongAnswers, type: Array, default: []
field :category, type: String
end
我已經配置了mongoid.yml配置文件指向數據庫的地址。
有誰知道如何正確地做到這一點或我要去哪裏錯了?
什麼是收藏的名字? –