Mongoose从findByIdAndUpdate(继承的模式)

时间:2015-04-30 11:51:20

标签: arrays node.js mongodb mongoose

我正在尝试使用findByIdAndUpdate

更新Mongoose模型

出于问题的原因,该模型被称为ItemVariant,它继承自Item

有效载荷数据的一个例子是:

var data = {
  arrayField: [ 1, 3 ],
  description: 'This is a description' }
}

如果我打电话

ItemVariant.findByIdAndUpdate(objectId, data);

我可以看到描述得到更新,但是arrayField根本没有传递给mongo - 实际上所有数组都被删除了数据对象。

我一直在试图弄清楚如何做到这一点,看看为数组设置$pushAll但似乎没有任何效果。

这里有什么我想念的吗?

继承模型架构。 Mongoose模型如下所示:

function ItemVariantSchema() {
    var self = this;
    Schema.apply(this, arguments);

    self.add({           
        description: [String],
        arrayField: [Number]
    });
}
util.inherits(ItemVariantSchema, ItemSchema);

// the field that represents the sub-class discriminator
var schemaOptions = {
    discriminatorKey: 'type'
};

// create ItemVariant schema
var itemVariantSchema = new ItemVariantSchema({}, schemaOptions);

// create ItemVariant model
Item.discriminator('Variant', itemVariantSchema);

// Export the ItemVariant schema
module.exports = ItemVariantSchema;

mongod --verbose输出的一个例子:

command: findAndModify { findandmodify: "itemvariants", query: { _id: ObjectId('5541fb680dc0e9223bea1ddb') }, new: 1, remove: 0, upsert: 0, update: { $set: { description: "EDIT: some description" } } } update: { $set: { description: "EDIT: some description" } } nscanned:1 nscannedObjects:1 nMatched:1 nModified:0 keyUpdates:0 numYields:0 locks(micros) w:104 reslen:358 0ms

正如您所看到的,arrayField已被删除

我也尝试过类似的事情:

var data = {
    $set: { description: 'This is a description' },
    $push: { arrayField: [ 1, 3 ] }
}

但$ push数组在到达mongo时似乎是空的。

同样根据@chridam的建议,我也尝试了类似的东西:

var data = {
    $set: {
        description: 'some description' 
    },
    $addToSet: {
        arrayField: {
            $each: [2, 3]
        }
    }
}

,输出现在看起来像这样:

command: findAndModify { findandmodify: "itemvariants", query: { _id: ObjectId('5541fb680dc0e9223bea1ddb') }, new: 1, remove: 0, upsert: 0, update: { $set: { description: "EDIT: another description" }, $addToSet: { arrayField: {} } } } update: { $set: { description: "EDIT: another description" }, $addToSet: { arrayField: {} } } nscanned:1 nscannedObjects:1 nMatched:1 nModified:1 keyUpdates:0 numYields:0 locks(micros) w:118 reslen:366 0ms

2 个答案:

答案 0 :(得分:3)

您需要使用$set运算符:

var data = {
   "arrayField": [ 1, 3 ],
   "description": "This is a description" 
};

ItemVariant.findByIdAndUpdate(objectId, { "$set": data });

- 更新 -

尝试将description字段上的$set更新运算符和$addToSet运算符与arrayField数组字段上的$each修饰符结合使用。 $each修饰符允许$addToSet运算符向数组字段添加多个值:

var data = {
   "arrayField": [ 1, 3 ],
   "description": "This is a description" 
};

var update = {
    "$set": {
        "description": data.description
    },
    "$addToSet": {
        "arrayField": {
            "$each": data.arrayField
        }
    }
};

ItemVariant.findByIdAndUpdate(objectId, update, options, callback);

答案 1 :(得分:0)

似乎继承是这里的罪魁祸首。

猫鼬模型需要来自鉴别者:

var ItemVariant = Item.discriminators['Variant'];
ItemVariant.findByIdAndUpdate(objectId, data);

这让它对我有用。 阵列破坏是一点红鲱鱼。而我的问题并没有描绘出整个画面。感谢@chridam的帮助