0

我有这个集合结构:

[
   "_id": "61a013b59f9dd0ebfd23ftgb",
   "modules": [
     {
       "_id": "61a013b59f9dd0ebfd964dgh",
       "videos": [
         {
           "_id": "213412",
           "progress": 100
         },
         {
           "_id": "61a013b59f9dd0ebfd965f4a",
           "progress": 0
         },
       ]
     },
     {
       "_id": "43556hujferwdhgsdft",
       "videos": [
         {
           "_id": "fdsg3sg98er989890",
           "progress": 66
         },
         {
           "_id": "fdsg3sg98er989890",
           "progress": 100
         },
         {
           "_id": "fdsg3sg98er989890",
           "progress": 100
         }
       ]
     }
   ]
 ]

我试图通过将所有进度为 100 的视频相加并根据模块中的视频数量创建一个百分比来返回每个“模块”的整体进度。例如,第一个模块应该在其中返回50 的“module_progess”,因为它完成了 1/2 个视频。

{
   "_id": "61a013b59f9dd0ebfd964dgh",
   "module_progress": 50,
   "videos": [
     {
       "_id": "213412",
       "progress": 100
     },
     {
       "_id": "61a013b59f9dd0ebfd965f4a",
       "progress": 0
     },
   ]
},

如何访问每个视频对象以进行此计算并将新字段添加到响应中?

4

1 回答 1

0

查询1

  • 模块上的地图
  • 并在每个字段上添加一个包含视频平均进度的字段

测试代码在这里

aggregate(
[{"$set": 
   {"modules": 
     {"$map": 
       {"input": "$modules",
        "in": 
        {"$mergeObjects": 
          ["$$this",
           {"module_progress": 
             {"$avg": 
               {"$map": 
                 {"input": "$$this.videos.progress",
                  "in": 
                  {"$cond": [{"$eq": ["$$progress", 100]}, "$$progress", 0]},
                  "as": "progress"}}}}]}}}}}])

查询2

  • 放松
  • 替换根以使结构更好
  • 添加平均字段

测试代码在这里

aggregate(
[{"$unwind": {"path": "$modules"}},
  {"$replaceRoot": {"newRoot": "$modules"}},
  {"$set": 
    {"module_progress": 
      {"$avg": 
        {"$map": 
          {"input": "$videos.progress",
            "in": {"$cond": [{"$eq": ["$$this", 100]}, "$$this", 0]}}}}}}])
于 2021-12-04T15:16:34.627 回答