我正在尝试更新mongodb中的多个记录。单记录如下:
"_id" : ObjectId("59704fac4ed2aa47e68c7f50"),
"uid" : 157140,
"ts" : NumberLong("170720120636"),
"a" : {
"em" : "[email protected]",
"fk" : "[email protected]",
"mo" : "1248849893",
"d" : 0,
"bl" : 0,
"att3" : "city20788",
"att66" : "fname20788"
}
}
{
"_id" : ObjectId("59704fac4ed2aa47e68c7f51"),
"uid" : 157141,
"ts" : NumberLong("170720120636"),
"a" : {
"em" : "[email protected]",
"fk" : "[email protected]",
"mo" : "1248849920",
"d" : 0,
"bl" : 0,
"att3" : "city20789",
"att66" : "fname20789"
}
}
我想为某些记录更新数组“a.d”的值。
查询我正在尝试:
db.userDetails.find({ uid : {$in : [157140,157141]}}).update({$set: {"a.d":1}})
但我得到错误:
"errmsg" : "A single update on a sharded collection must contain an exact match on _id (and have the collection default collation) or contain the shard key (and have the simple collation). Update request: { q: { uid: { $in: [ 157140.0, 157141.0 ] } }, u: { $set: { a.d: 1.0 } }, multi: false, upsert: false }, shard key pattern: { uid: 1 }"
db.collection.find().forEach( function(doc) {
do {
db.collection.update({_id: doc._id,{$elemMatch_{user__test_,{$ne:"new_avatar.jpg"}}}},{$set:{"comments.$.avatar":"new_avatar.jpg"}});
} while (db.getPrevError().n != 0);
})