标签: mongodb mongo-shell
假设我们有以下文档:
{ "friends" : [ "1234", "5678" ] }
如何使用mongo shell将集合中的所有文档更新为以下格式:
{ "friends" : [ {"name": "1234", "views": 0}, {"name": "5678", "views": 0} ] }