猫鼬模型更新查询



我有这个猫鼬模式

var mongoose = require('mongoose'),
    Schema = mongoose.Schema;
var imageModel = new Schema({
    url: {type: String}
});
var albumModel = new Schema({
    name: {type:String},
    images: [imageModel]
});
module.exports = mongoose.model("Album",albumModel);

,这个模式的一个实例是

    { 
     _id: 55ba2588e8e0f5d80f752889,
     name: 'album1',
     __v: 0,
    images:
     [ { 
        url: 'images_uploaded/photo1.gif',
        _id: 55ba2588e8e0f5d80f75288e 
       },
       {  
         url: images_uploaded/photo2.jpg',
        _id: 55ba2588e8e0f5d80f75288d
       }]
    }

我会从相册中删除不存在于其他json对象的图像,来自用户请求

     console.log(req.body)
     {
       _id: 55ba2588e8e0f5d80f752889,
       name: 'album1',
       images:
        [{  
            url: images_uploaded/photo2.jpg',
           _id: 55ba2588e8e0f5d80f75288d
        }]
    }

应该从子文档中删除photo .gif

我试过了

 album.images.pull({"_id":"55ba2588e8e0f5d80f75288e "});

这个工作得很好,但是当我使用$nin操作符

 var ids = [];
 for(var i=0; i< req.body.images.length; i++)
 {
      ids.push(req.body.images[i]._id);
 }
 req.album.images.pull({"_id":{$nin: ids}});

是行不通的。

看起来您正在调用Array.protoype.pull的方法,而不是从mongoose的pull。但这里是如何从数组的嵌套对象进行拉取。

var Album = require("albumModel");
....
var ids = req.body.images.map(function(image){ return image._id });
Album.update({}, { $pull: { images: { $elemMatch: { _id: { $nin: ids } } } } }).exec(function(err) {
  // Do something
});
....

相关内容

  • 没有找到相关文章

最新更新