从猫鼬模式检索自定义对象

时间:2018-12-03 20:05:20

标签: mongodb mongoose

我的Mongoose模式中有一个JSON对象数组。每当我在模型上执行.find时,它都无法返回对象数组,而是默认为空数组。

我的架构如下:

orders: [
    {
      type: Object,
      required: false
    }
  ]

在数据库中,订单键如下:

"orders": [
        {
            "options": [
                {
                    "name": "Blueberries",
                    "optionId": ""
                },
                {
                    "name": "Strawberries",
                    "optionId": ""
                }
            ],
            "restaurantId": ""
        }
    ]

当我调用Model.find()时,如果返回一个空数组。任何帮助将不胜感激!

0 个答案:

没有答案