从文档中删除字段时,remove() 方法和 update() 方法有什么区别?

What is the difference between the remove() method and the update() method while remove a field form the documents?

我想从文档中删除一个字段,所以让我知道我必须使用带有 $unset 运算符的 remove() 方法或 update() 方法。

您需要使用 $unset 运算符的 update() 方法。

remove()是删除文档。