Ruby和MongoDB - 检索数据库和集合

时间:2016-01-26 15:38:58

标签: ruby-on-rails ruby mongodb

在我的rails应用程序中,如何检索它连接的MongoDB数据库(及其集合)?

请注意,我不想列出数据库。我只想要应用程序所连接的那个!

1 个答案:

答案 0 :(得分:0)

  • 您应该使用ODM:https://github.com/mongodb/mongoid
  • 根据here设置config / mongoid.yml。
  • include Mongoid::Document在模型中。
  • 之后,您可以按照Rails方式查询〜results = Foo.where(name: "bar")