为什么不使用 javascript 中的 splice 方法删除数组元素?

在我的 Nodejs 应用程序中,我有一个名为 auditors_checklist 的数组,类型为 post(post 是 mongoose 模式),我已经在 mongoose 模式中引用了用户模型,现在我想为特定用户从这个数组中删除一个元素,我使用了 ajax请求,当单击“清除”按钮时,将向这条路线发出请求:-


router.get("/clear/:slug", (req,res)=>{


  User.findById(req.user._id).populate("auditors_checklist").exec(function(err,user){

    for(var i=0;i<user.auditors_checklist.length;i++){

      console.log("\n",user.auditors_checklist[i],"\n")

    }


    if(err) console.log(err)

    else{

        Post.findOne({slug: req.params.slug}, (err,post)=>{


        if(err) console.log(err)

        else{

          

          for(var i=0;i<user.auditors_checklist.length;i++){

            // console.log("flag : " + flag)

            // console.log(user.auditors_checklist[i].title, post.title)

            if(user.auditors_checklist[i].title === post.title){

              user.auditors_checklist.splice(i ,1);

              break;

            }

          }

          

          // console.log("flag : " + flag);

          // console.log(delete_index)

          console.log(user.auditors_checklist.length)

          // user.auditors_checklist.splice(delete_index ,1)          

          console.log(user.auditors_checklist.length,"\n\n\n")


          for(var i=0;i<user.auditors_checklist.length;i++){

            console.log("\n",user.auditors_checklist[i],"\n")

          }

        }

      })

    }

  })

})

我在控制台上拼接操作前后打印了这个数组的大小,它实际上显示数组大小减少了一个,这意味着帖子被删除了,但是当我在 mongo shell 中使用 db.users.find({username : "name"}), 并没有被删除,数组元素(数组元素实际上是一个对象)还在吗?


这怎么可能?我如何真正删除该元素?任何帮助,将不胜感激。


胡子哥哥
浏览 110回答 1
1回答

哈士奇WWW

Mongoose 有一个内置函数可以从子文档数组中删除一个元素。&nbsp;document.array.pull(element);&nbsp;// or if you want to look with a key&nbsp;document.array.pull(_id: element);&nbsp;// you can pull multiple elements&nbsp;document.array.pull(element1, element2);你的代码将是router.get("/clear/:slug", (req,res)=>{&nbsp; User&nbsp; &nbsp;.findById(req.user._id)&nbsp; &nbsp;.populate("auditors_checklist")&nbsp; &nbsp;.exec(function(err,user){&nbsp; &nbsp; &nbsp;if(err) console.log(err)&nbsp; &nbsp; &nbsp;else{&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Post.findOne({slug: req.params.slug}, (err,post)=>{&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if(err) console.log(err)&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;else{&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;user.auditors_checklist.pull(post.title);&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;user.save((error,user)=>{&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;//TODO&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;});&nbsp;&nbsp; &nbsp; &nbsp; }&nbsp; &nbsp; });&nbsp; &nbsp;}});来源:https ://mongoosejs.com/docs/api.html#mongoosearray_MongooseArray-pull
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript