私はこのようになりますマングーススキーマを持っている:予想通りサブ文書配列の特定の要素をmongooseで変更したものとしてマークするにはどうすればよいですか?
let ChildSchema = new Schema({
name:String
});
ChildSchema.pre('save', function(next){
if(this.isNew) /*this stuff is triggered on creation properly */;
if(this.isModified) /* I want to trigger this when the parent's name changes */;
next();
});
let ParentSchema = new Schema({
name: String,
children: [ChildSchema]
});
isNew
ものは動作しますが、私は変更さisModified
ものはいつでも親の名前の変更をトリガーされるようにchildren
の実際の配列要素をマークしたいです。私はこれを行う方法がわかりません。
私が試してみた:
はParentModel.findById(id)
.then((parentDocument) => {
parentDocument.name = 'mommy'; //or whatever, as long as its different.
if(parentDocument.isModified('name')){
//this stuff is executed so I am detecting the name change.
parentDocument.markModified('children');//probably works but doesn't trigger isModified on the actual child elements in the array
for(let i=0; i < parentDocument.children.length; i++){
parentDocument.markModified('children.'+i);//tried this as I thought this was how you path to a specific array element, but it has no effect.
}
parentDocument.save();//this works fine, but the child elements don't have their isModified code executed in the pre 'save' middleware
}
});
は私の質問 - どのようにあなたは彼らのisModified
プロパティがtrueになるように修正されたサブドキュメントの特定の(またはすべての)配列要素をマークしていますか?私のプリセーブミドルウェアは正常に実行されていますが、項目のどれもisModified === true
を持っていません。