MongoDB – $accumulator官网Demo转成真正的JS代码 – 方便理解

导读:本篇文章讲解 MongoDB – $accumulator官网Demo转成真正的JS代码 – 方便理解,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com

官网的案例: https://docs.mongodb.com/manual/reference/operator/aggregation/accumulator/#mongodb-group-grp.-accumulator

数据

db.restaurants.insertMany([
  { "_id" : 1, "name" : "Food Fury", "city" : "Bettles", "cuisine" : "American" },
  { "_id" : 2, "name" : "Meal Macro", "city" : "Bettles", "cuisine" : "Chinese" },
  { "_id" : 3, "name" : "Big Crisp", "city" : "Bettles", "cuisine" : "Latin" },
  { "_id" : 4, "name" : "The Wrap", "city" : "Onida", "cuisine" : "American" },
  { "_id" : 5, "name" : "Spice Attack", "city" : "Onida", "cuisine" : "Latin" },
  { "_id" : 6, "name" : "Soup City", "city" : "Onida", "cuisine" : "Chinese" },
  { "_id" : 7, "name" : "Crave", "city" : "Pyote", "cuisine" : "American" },
  { "_id" : 8, "name" : "The Gala", "city" : "Pyote", "cuisine" : "Chinese" }
])

请添加图片描述

db.restaurants.aggregate([
{
  $group :
  {
    _id : { city: "$city" },
    restaurants:
    {
      $accumulator:
      {
        init: function(city, userProfileCity) {       
          return {
            max: city === userProfileCity ? 3 : 1,    
            restaurants: []                           
          }
        },
        initArgs: ["$city","Onida"],       
        accumulate: function(state, restaurantName) { 
          if (state.restaurants.length < state.max) {
            state.restaurants.push(restaurantName);
          }
          return state;
        },
        accumulateArgs: ["$name"],                    
        merge: function(state1, state2) {
          return {
            max: state1.max,
            restaurants: state1.restaurants.concat(state2.restaurants).slice(0, state1.max)
          }
        },
        finalize: function(state) {                   
          return state.restaurants
        },
        lang: "js"
      }
    }
  }
}
])

请添加图片描述


将上面的案例直接转换成真正的JS代码 == 更加的易懂


<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
  </head>
  <body></body>
  <script>
    var objs = [
      { _id: 1, name: "Food Fury", city: "Bettles", cuisine: "American" },
      { _id: 2, name: "Meal Macro", city: "Bettles", cuisine: "Chinese" },
      { _id: 3, name: "Big Crisp", city: "Bettles", cuisine: "Latin" },
      { _id: 4, name: "The Wrap", city: "Onida", cuisine: "American" },
      { _id: 5, name: "Spice Attack", city: "Onida", cuisine: "Latin" },
      { _id: 6, name: "Soup City", city: "Onida", cuisine: "Chinese" },
      { _id: 7, name: "Crave", city: "Pyote", cuisine: "American" },
      { _id: 8, name: "The Gala", city: "Pyote", cuisine: "Chinese" },
    ];
    //分组 == 按city的值
    var groups = {};
    objs.forEach((item, index) => {
      if (!groups[item.city]) {
        groups[item.city] = [];
      }
      groups[item.city].push(item);
    });
    console.log("=============分组开始==============")
    console.log(groups);
    console.log("=============分组结束==============")
    //==========================MongoDB的聚合【直接粘贴复制的】==============================================
    function init(city, userProfileCity) {
      let state = {
        max: city === userProfileCity ? 3 : 1,
        restaurants: [],
      };
      return state;
    }
    function accumulate(state, restaurantName) {
      if (state.restaurants.length < state.max) {
        state.restaurants.push(restaurantName);
      }
      return state;
    }
    function merge(state1, state2) {
      return {
        max: state1.max,
        restaurants: state1.restaurants
          .concat(state2.restaurants)
          .slice(0, state1.max),
      };
    }
    function finalize(state) {                  
      return state.restaurants
    }  
    //========================================================================
    var initGroups = {};
    for( let groupName in  groups) {
      var groupElems = groups[groupName];
      initGroups[groupName] = JSON.parse(JSON.stringify(groupElems));
      var initGroupElems = initGroups[groupName];
      for(var index = 0 ; index < groupElems.length; index++) {
        //等价于 initArgs: ["$city","Onida"]
        let state = init(groupName, "Onida");
        //等价于accumulateArgs: ["$name"]
        initGroupElems[index] = accumulate(state, groupElems[index]["name"])
      }
      //等价于merge
      var metgeResult = initGroupElems.reduce( merge );
      //等价于finalize
      initGroups[groupName] = finalize(metgeResult);
    }
    console.log("=============分组聚合后的结果==开始============")
    console.log(initGroups);
    console.log("=============分组聚合后的结果==结束============")
   
  </script>
</html>


请添加图片描述

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/46409.html

(0)
小半的头像小半

相关推荐

极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!