mongoDB Mongoose使用来自字段的数据创建数组

时间:2019-03-02 04:24:48

标签: mongodb mongoose

我有一个以quantity作为字段的猫鼬模式。我希望字段count保留与数量相同的数据,除了数组中。

例如,如果quantity3,则count应该为[1, 2, 3],这样我就可以始终采用该数量字段并将其转换为数组模型?还是必须始终循环遍历数量才能在控制器内创建数组,然后将其保存回模型?

   const productSchema = new Schema({
        name: { type: String, trim: true, required: true },
        quantity: { type: Number, trim: true, required: true },
        count: [Number] 
    });

0 个答案:

没有答案