前端之家收集整理的这篇文章主要介绍了
ruby – 使用Mongoid查找集合中的所有文档,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我一直在摆弄Mongo,但是不能让这个简单的例子起作用.我只是想检索集合中的所有文档:
require 'mongoid'
# configuration ...
class Category
include Mongoid::Document
field :name,type: String
end
Category.each do |test|
puts test.inspect
end
我得到错误:类别:类(NoMethodError)的未定义方法’each’.
已建立与数据库的连接,名为categories的集合包含一些文档.
类别确实没有每个
方法,因为它是模型类,而不是集合.但是,它有几种
方法可以返回类似集合的对象.其中之一就是全部.所以
代码应该如下所示:
Category.all.each do |test|
puts test.inspect
end
原文链接:https://www.f2er.com/ruby/268637.html