刪除
以 mongoose 從集合中刪除文件的方式如下。
Auto.remove({_id:123}, function(err, result){
if (err) return console.error(err);
console.log(result); // this will specify the mongo default delete result.
});
以 mongoose 從集合中刪除文件的方式如下。
Auto.remove({_id:123}, function(err, result){
if (err) return console.error(err);
console.log(result); // this will specify the mongo default delete result.
});