如何使用前缀字符串更新数组中的所有元素?
若要使用前缀字符串更新数组中的所有元素,请使用 forEach()。我们首先创建一个包含文档的集合 −
> db.replaceAllElementsWithPrefixDemo.insertOne( { "StudentNames" : [ "John", "Carol" ] } ); { "acknowledged" : true, "insertedId" : ObjectId("5cd91908b50a6c6dd317ad8e") } > > > db.replaceAllElementsWithPrefixDemo.insertOne( { "StudentNames" : [ "Sam" ] } ); { "acknowledged" : true, "insertedId" : ObjectId("5cd9191cb50a6c6dd317ad8f") }
以下查询使用 find() 方法显示某个集合中的所有文档 −
> db.replaceAllElementsWithPrefixDemo.find().pretty();
这将产生以下输出 −
{ "_id" : ObjectId("5cd91908b50a6c6dd317ad8e"), "StudentNames" : [ "John", "Carol" ] } { "_id" : ObjectId("5cd9191cb50a6c6dd317ad8f"), "StudentNames" : [ "Sam" ] }
以下查询用于将数组中的所有元素替换为一个前缀字符串。前缀字符串为“MR”−
> db.replaceAllElementsWithPrefixDemo.find().forEach(function (myDocumentValue) { var prefixValue = myDocumentValue.StudentNames.map(function (myValue) { return "MR." + myValue; }); db.replaceAllElementsWithPrefixDemo.update( {_id: myDocumentValue._id}, {$set: {StudentNames: prefixValue}} ); });
让我们再次检查一下这个文档 −
> db.replaceAllElementsWithPrefixDemo.find().pretty();
这将产生以下输出 −
{ "_id" : ObjectId("5cd91908b50a6c6dd317ad8e"), "StudentNames" : [ "MR.John", "MR.Carol" ] } { "_id" : ObjectId("5cd9191cb50a6c6dd317ad8f"), "StudentNames" : [ "MR.Sam" ] }
广告