我正在尝试删除一个大文档中的字段,因此我想做点什么:
collection.update({'_id' => @id}, {"$unset" => {'herField'})
但这是不可能的。我不想重写整个文档,知道吗?
编辑:我正在使用https://github.com/mongodb/mongo-ruby-driver
您的语法看起来有点不正确。根据文件:
collection.update( { _id: @id }, { $unset: { herField: true } }, { multi: true });
如果要更新多个文档,则需要"multi"选项。例如,来自此集合上的所有记录。
http://docs.mongodb.org/manual/reference/operator/unset/#op._S_unset