आप अपने B.update
. में सही फ़ील्ड नामों का उपयोग नहीं कर रहे हैं बुलाना। इसके बजाय यह होना चाहिए:
B.update(
{ 'PDFs._id': pdf_id }, // <== here
{ $set: {
'PDFs.$.title': 'new title' // <== and here
}}, function (err, numAffected) {
if(err) throw err;
assert.equal(numAffected,1);
}
);
आपको अपना reset
भी ठीक करना चाहिए save
. तक इसके कॉलबैक को कॉल न करने के लिए फ़ंक्शन पूरा करता है:
function reset(cb) {
B.find().remove();
// create some data with a nested document A
var newA = new A( { title : "my title" })
var newB = new B( { PDFs: newA});
newB.save(cb); // <== call cb when the document is saved
}