deleteMany不与$ size运算符一起使用

时间:2018-11-30 00:29:03

标签: mongodb mongoose mongodb-query

我正在尝试删除嵌套文档“嵌套”中包含0个元素的所有集合。

 Tag.deleteMany({ "blog": { $size: 0 } }).exec()

由于某种原因,它不适用于猫鼬, 但是当我在Robo中运行它时它就起作用了

db.getCollection('tags').deleteMany({ "blog": { $size: 0 } })

有人知道为什么它可以在查询shell中工作,但不能与Mongoose代码一起工作吗? 这是架构。

var tagSchema = new mongoose.Schema({
tag: String,
created: { type: Date, default: Date.now },
blog: [{ type: mongoose.Schema.Types.ObjectId,
         ref: "blog" }]

var blogSchema = new mongoose.Schema({
title: String,
image: String,
description: String,
body: String,    
created: { type: Date, default: Date.now },
tag:[{  type: mongoose.Schema.Types.ObjectId,
        ref: "tag" }]

更新...我认为现在是Promise链接问题?

 let foundBlog
 Blog.findOne({ title: '1st Post' })            
        .then((blog) => { 
            foundBlog = blog;                
        })
        .then(() => {
            console.log(foundBlog.tag)
            Tag.updateMany(                 
            { _id : { $in: foundBlog.tag} },
            { $pull: { blog: foundBlog._id.toString()} }).exec()                
        })
        .then(() => {
            Tag.deleteMany({ "blog": { $size: 0 } }).exec()
        })
        .then(() => done())

由于某些原因,Tag.deleteMany在Tag.updateMany之后不起作用。 我的诺言链正确吗?谢谢

1 个答案:

答案 0 :(得分:1)

尝试以这种方式链接:

let foundBlog
 Blog.findOne({ title: '1st Post' })            
    .then((blog) => { 
        foundBlog = blog;                
    })
    .then(() => {
        console.log(foundBlog.tag)
        Tag.updateMany(                 
            { _id : { $in: foundBlog.tag} },
            { $pull: { blog: foundBlog._id.toString()} })
            .then(() => {
                Tag.deleteMany({ "blog": { $size: 0 } }).then(() => done())  
            })           
    })