当前位置: 首页 > 面试题库 >

MongoDB:$ lookup返回空数组

杨安歌
2023-03-14
问题内容

我有两个模型,用户模型和时间表,我想用$
lookup
和猫鼬把这两个模型结合起来。

用户(型号)

    name: {
        type: String,
        required: true
    },
    firstName: {
        String
    },
    lastName: {
        String
    },
    storeKey: {
        type: String,
        required: true
    },
    avatar: String,
    birthday: String,
    phone: {
        type: String
    },
    doc: String,
    email: {
        type: String
    },
    password: {
        passwordHash: String,
        salt: String
    },
    active: {
        type: Boolean,
        default: true
    },
    deleted: {
        type: Boolean,
        default: false
    },
    generalObservations: {
        type: String
    },
    from: {
        type: String
    },
    services: {
        type: Number,
        default: 0
    },
    no_shows: {
        type: Number,
        default: 0
    },
    // campos para integração
    integrationId: String
}, {
    timestamps: true

时间表(型号)

 store: {
    type: String,
    required: true
  },
  customer: {
    id: {
      type: ObjectId
    },
    name: {
      type: String,
      required: true
    },
    avatar: String,
    phone: {
      type: String
    },
    doc: {
      type: String
    },
  },
  employee: {
    id: {
      type: String,
      required: true
    },
    name: {
      type: String,
      required: true
    },
    avatar: String,
  },
  service: {
    id: {
      type: String
    },
    name: {
      type: String,
      required: true
    },
    filters: [String]
  },
  info: {
    channel: {
      type: String,
      required: true,
      default: 'app'
    },
    id: String,
    name: String
  },
  scheduleDate: {
    type: String,
    required: true
  },
  scheduleStart: {
    type: String,
    required: true
  },
  scheduleEnd: {
    type: String,
    required: true
  },
  value: {
    type: Number,
    required: true
  },
  comissionType: {
    type: String,
    default: '$'
  },
  comissionValue: {
    type: Number,
    default: 0
  },
  status: {
    type: Number,
    required: true
  },
  observation: String,
  paymentMethod: {
    type: Number,
    default: 0
  },
  paymentValue: String,
  paymentChange: String
}, {
  timestamps: {
    createdAt: 'created',
    updatedAt: 'updated'
  }

现在我的查询使用猫鼬:

用户汇总

  User.aggregate([{
      $match: {
        storeKey: req.body.store,    
      }
    },
    {
      $group: {
        _id: {
          id: "$_id",
          name: "$name",
          cpf: "$cpf",      
          phone: "$phone",
          email: "$email",
          birthday: "$birthday"      
        },     
        totalServices: {
          $sum: "$services"
        }
      }
    },
    {
      $lookup: {
        from: "schedule",
        localField: "_id.id",
        foreignField: "customer.id",
        as: "user_detail"
      } 
    }

我的查询结果是一个空的array(user_detail),如下所示:

查询结果:

{
        "_id": {
            "id": "5bdb5b16ee9b7a4aa810bc62",
            "name": "Jonas com aniversário",
            "phone": "11984798494",
            "email": "j@jz.com",
            "birthday": "Thu Nov 01 2018 16:59:18 GMT-0300 (Hora oficial do Brasil)"
        },
        "totalServices": 0,
        "user_detail": []
    }

我不知道为什么,但是查询结果是一个 空数组 ,我试图使用$ unwind和$ match,但也无法正常工作。

编辑:

用户集合

{
        "_id": "5b1b1dcce1ab9a12a8eb580f",
        "password": {
            "salt": "d095f2",
            "passwordHash": "b24881ef4c43d28e93bcff5da2ce32e4287aabf77540d2465482a435a5929a63f2ba9fb7e1cc14fa4e8183d83e33854ec6153fbbb872e65a9e3f188892bf56cc"
        },
        "name": "Anderson Zanardi",
        "cpf": "31933765828",
        "phone": "11996370565",
        "birthday": "1984-03-18",
        "email": "dev@wabiz.com.br",
        "storeKey": "5b16cceb56a44e2f6cd0324b",
        "createdAt": "2018-06-09T00:22:36.464Z",
        "updatedAt": "2018-11-06T13:51:37.261Z",
        "__v": 0,
        "doc": "31933765828",
        "active": true,
        "from": "app",
        "deleted": false,
        "services": 80
    },

时间表的收集

{
        "_id": "5b1c20d8fc76f904849712c9",
        "customer": {
            "id": "789456",
            "name": "Gabriel Barreto",
            "phone": "11995274098",
            "cpf": "40735255814"
        },
        "employee": {
            "id": "5b16cebd29bcf613f02b6fb4",
            "name": "Anderson Zanardi",
            "avatar": ""
        },
        "service": {
            "filters": [
                "corte_simples",
                "corte_masculino"
            ],
            "id": "service_id",
            "name": "Corte Masculino"
        },
        "store": "5b16cceb56a44e2f6cd0324b",
        "scheduleDate": "2018-06-07",
        "scheduleStart": "2018-06-28 13:00",
        "scheduleEnd": "2018-06-28 13:30",
        "status": 1,
        "value": 50,
        "created": "2018-06-09T18:47:52.862Z",
        "updated": "2018-06-09T18:47:52.862Z",
        "__v": 0
    },

问题答案:

猫鼬在创建时将集合名称复数。所以代替schedule你应该使用schedules

{ "$lookup": {
  "from": "schedules",
  "localField": "_id.id",
  "foreignField": "customer.id",
  "as": "user_detail"
}}

或导入集合并从中提取集合名称

const Schedule = require('/schedules')

{ "$lookup": {
  "from": Schedule.collection.name,
  "localField": "_id.phone",
  "foreignField": "customer.phone",
  "as": "user_detail"
}}


 类似资料:
  • 问题内容: 我是mongodb的新手,并在下面的文档中使用mongoose进行练习,并且遇到了一个非常令人困惑的问题。 我有用户架构 评论模式 和模型 然后我做 但是我在查询中得到空的共同点。根据数据库中的数据,我不应该得到这个结果。搜索后,我仍然找不到错误所在。 最后但并非最不重要的一点是,我需要使用方法,因此我必须在参考文件上使用,是否有意义? 问题答案: $ lookup中的字段是集合名称,

  • 它引发异常 如果我尝试使用以下代码, 它不会抛出上面的异常,而是在使用数据源时抛出异常 但是,查看类的代码,我们可以看到它实现了 服务器信息:

  • 我收集了下列文件 使用查询生成器执行以下查询时,它将返回空数组 我的输入值是 以及查询 下面是表单字段 谁能帮我一下我的问题出在哪里。提前谢谢。

  • 问题内容: 我有以下架构,其中项目类型可能有所不同,并在中提到。 我正在尝试进行动态查找,以便填充item对象。但这似乎不起作用。 我知道我可以使用,但想知道是否可以使用$ lookup 问题答案: 到目前为止,您还不能。该字段不能是表达式,而必须是字符串文字。但是,您可以在这里跟踪一个未解决的问题,该问题似乎恰恰是您所需要的:https : //jira.mongodb.org/browse/S

  • 问题内容: 我的日志显示此异常:由以下代码触发: 我试图弄清楚String.split返回空数组的条件。我的理解是,如果找不到匹配项,则返回大小为1且与原始字符串匹配的数组。 这是为Android build SDK版本21编译的Java。我期待听到我遗漏的明显细节。 问题答案: 返回结果的地方是。现在根据文档(限制由表示) 如果为零,则将尽可能多地应用该模式,该数组可以具有任何长度,并且 尾随的

  • 我试图将mysql查询的结果作为json返回,但是json_encode函数总是返回空白,尽管数组包含元素。 检索查询并转换为php数组: 然后返回结果: 这不返回任何内容,而我在回显以下语句时确实得到了结果: 返回“数组” 返回“Youreka!demo” 你知道我做错了什么吗? ID:2,名字:尤瑞卡!演示,地址:Italiëlei 26,邮政编码:2000,城市:Antwerpen,国家:B