计算Mongoid中的嵌入式文档

时间:2016-04-19 16:42:31

标签: ruby-on-rails ruby mongodb mongoid aggregation-framework

我正在使用Rails + Mongoid,我有3个模型设置如下:

# sheet.rb
class Sheet
  include Mongoid::Document

  field :name, type: String

  embeds_many :rows
end

# row.rb
class Row
  include Mongoid::Document

  field :name, type: String

  embedded_in :sheet
  embeds_many :cells
end

# cell.rb
class Cell
  include Mongoid::Document

  field :display_value, type: String
  field :column_id, type: String
  field :active, type: Mongoid::Boolean

  embedded_in :row
end

这是一个示例工作表文档(JSON):

{
    "_id" : ObjectId("57100b713ab82964c3c17ecb"),
    "name" : "Ship Tracker",
  "rows": [
    {
        "_id" : ObjectId("57100b813ab82964c3c17f54"),
      "name": "Obelisk"
        "cells" : [
            {
                "_id" : ObjectId("57100b813ab82964c3c17f55"),
                "column_id": "7263313013827459",
                "display_value" : "Undocked",
                "active": true
            },
            {
                "_id" : ObjectId("57100b813ab82964c3c17f76"),
                "column_id" : "7263313013827460",
                "display_value" : "J7X-VN",
                "active": true
            }
        ]
    },
    {
        "_id" : ObjectId("57100b813ab82964c3c18e3a"),
      "name": "Thanatos"
        "cells" : [
            {
                "_id" : ObjectId("57100b813ab82964c3c17f6e"),
                "column_id": "7263313013827459",
                "display_value" : "Undocked",
                "active": true
            },
            {
                "_id" : ObjectId("57100b813ab82964c3c17f70"),
                "column_id" : "7263313013827460",
                "display_value" : "NHKO-4",
                "active": true
            }
        ]
    },
    {
        "_id" : ObjectId("57100b813ab82964c3c17f47"),
      "name": "Brutix"
        "cells" : [
            {
                "_id" : ObjectId("57100b813ab82964c3c17f66"),
                "column_id": "7263313013827459",
                "display_value" : "Docked",
                "active": true
            },
            {
                "_id" : ObjectId("57100b813ab82964c3c17f3c"),
                "column_id" : "7263313013827460",
                "display_value" : "P-T9VC",
                "active": true
            }
        ]
    }
  ]
}

我正在尝试但是失败,要返回显示值的计数。我已尝试将聚合框架与Mongoid一起使用,但它似乎没有返回任何结果。

我使用以下代码进行聚合,但我觉得我做错了。我没有从Mongoid / Ruby那里得到任何错误:

 query = [{'$match': {'$rows.$cells.active': true}},
        {'$group': {'_id': '$rows.$cells.display_value', 'total': {'$sum': '$amount'}}}]
 sheet = Sheet.first
 results = sheet.collection.aggregate(query)

当我检查结果时,它会返回一个Mongo::Collection::View::Aggregation对象,我无法弄清楚该怎么做。

任何帮助将不胜感激

由于

1 个答案:

答案 0 :(得分:1)

确定。一些指示开始:

1)#collection转到该类的集合对象。因此Sheet.collection与sheet.first.collection相同。它是整个文档集的句柄。

2)聚合仅在调用输出时运行。放一个.each {| l | p l},你会看到它剔除结果

3)聚合可以由无限数量的操作组成。传递给聚合的数组按照发送的顺序执行。因此[project,match,sort]将返回一组不同的结果[match,sort,project]。您可以随时构建和输出图层,以确保正确构建它。

4)您需要展开嵌入式文档以进行所需的计数(https://docs.mongodb.org/manual/reference/operator/aggregation/unwind/)。

如果您需要我为您编写聚合,我可以,但这是一个很好的练习,可以通过自己构建它的动作。您可以在mongodb网站上找到所需的所有信息。如果您需要任何帮助,请大声说出来。