有没有一种方法可以为MongoDB驱动程序返回findOneAndUpdate()方法的两个值?
这是我的代码:
collection.findOneAndUpdate({name: 'chris'}, {$set: {name: "matt"}}, {returnOriginal: false}, (err, result) =>{
console.log(result) //returns matt, want to be able to return both chris and matt
})
我想同时获得Chris和Matt的值,所以我可以登录控制台
Chris has been changed to matt in the db.
我现在似乎找不到办法,想知道是否有人已经解决了这个问题。