如何在节点蒙古语上使用 dropIndex() ?

发布于 2024-12-01 18:46:25 字数 611 浏览 1 评论 0原文

您好,我正在尝试删除 mongo db 中的特定输入...我正在使用 蒙古语 客户端,很抱歉我还没有掌握 API...

这次尝试失败了,

if(req.body.post.del){
     posts.dropIndex({_id:req.body.post.del}, function(err){  //this query must be wrong
      if(err)
    res.render('blog_edit', {locals:{title:'Failure to delete from DB'}}); //this is what I get...
      else
        posts.find({}).toArray(function(err, arr){
      if(err) throw err

      res.render('blog_edit', {locals:{title:'Success!', posts: arr }});
    })
    })
  }

请提供一些帮助... 提前致谢!

Hello I'm trying to delete a specific input in mongo db... I am using the mongolian
client, and I'm sorry I haven't managed to grasp the API yet...

this attempt is failing

if(req.body.post.del){
     posts.dropIndex({_id:req.body.post.del}, function(err){  //this query must be wrong
      if(err)
    res.render('blog_edit', {locals:{title:'Failure to delete from DB'}}); //this is what I get...
      else
        posts.find({}).toArray(function(err, arr){
      if(err) throw err

      res.render('blog_edit', {locals:{title:'Success!', posts: arr }});
    })
    })
  }

please provide some help...
thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

舞袖。长 2024-12-08 18:46:25

最后,我设法通过使用 remove 而不是 dropIndex 来完成我想要的操作,但由于某种原因,无法通过 _id 进行索引,因此我使用了 title :

posts.remove({title:req.body.post.del}, function(err){ //this will work

这不会工作:

posts.remove({_id:req.body.post.del}, function(err){ //this will NOT work

Finally I managed to do what I wanted by using remove instead of dropIndex , still for some reason indexing by _id was not possible so I used title:

posts.remove({title:req.body.post.del}, function(err){ //this will work

this will not work:

posts.remove({_id:req.body.post.del}, function(err){ //this will NOT work
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文