无法删除水线mongo中的对象

时间:2014-05-09 20:26:58

标签: node.js sails.js waterline

我使用mongodb和waterline试图从我的收藏中删除某个节点并且它不起作用

User.find({}).done(function(err, myObjects){
  console.log(myObjects[0].id)
})

"myId"

User.find({}).done(function(err, myObjects){
  User.findOne({id: myObjects[0].id}).done(function(err, myObject){
    console.log(myObject);
  });
});
undefined

实际上我想要破坏数据库中的所有内容,但每次我尝试它时都会坚持下去,我考虑尝试postgres,但我知道mongo对我的应用程序很有用。也许我只是不了解水线如何运作。

0 个答案:

没有答案