FBFriendModel.find({
    id: 333
}, function (err, docs) {
    docs.remove(); //Remove all the documents that match!
});

上面的方法似乎不管用。记录还在那里。

有人能修好吗?


当前回答

你可以随时使用Mongoose内置函数:

var id = req.params.friendId; //here you pass the id
    FBFriendModel
   .findByIdAndRemove(id)
   .exec()
   .then(function(doc) {
       return doc;
    }).catch(function(error) {
       throw error;
    });

其他回答

更新:猫鼬版本(5.5.3)

remove()已弃用,可以使用deleteOne()、deleteMany()或bulkWrite()代替。

至于“mongoose”:“>=2.7.1”,你可以直接用.remove()方法删除文档,而不是找到文档,然后删除它,这在我看来更有效,更容易维护。

看到的例子:

Model.remove({ _id: req.body.id }, function(err) {
    if (!err) {
            message.type = 'notification!';
    }
    else {
            message.type = 'error';
    }
});

更新:

从mongoose 3.8.1开始,有几个方法可以让你直接删除一个文档,比如:

删除 findByIdAndRemove findOneAndRemove

更多信息请参考mongoose API文档。

.remove()类似于.find():

MyModel.remove({search: criteria}, function() {
    // removed.
});

简单的做

FBFriendModel.remove().exec();

mongodb .model.find()返回一个查询对象,该对象也有一个remove()函数。

如果你只想删除一个唯一的文档,你也可以使用mongoose.model.findOne()。

否则,您也可以遵循传统的方法,即首先检索文档,然后删除。

yourModelObj.findById(id, function (err, doc) {
    if (err) {
        // handle error
    }

    doc.remove(callback); //Removes the document
})

以下是在模型对象上您可以执行以下任何操作来删除文档的方法:

yourModelObj.findOneAndRemove(conditions, options, callback)

yourModelObj。findByIdAndRemove(id, options, callback)

yourModelObj。删除(条件,回调);

var query = Comment.remove({ _id: id });
query.exec();

使用remove()方法,您可以删除。

getLogout(data){
        return this.sessionModel
        .remove({session_id: data.sid})
        .exec()
        .then(data =>{
            return "signup successfully"
        })
    }