Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
717 views
in Technique[技术] by (71.8m points)

mongo不通过forEach如何更新同文档字段?

假设MONGO文档中有xxoo(数组)和length(数组大小)两个字段。
不通过find.foreach(update)遍历的方式,如何更新length为xxoo数组的大小?
?示例文档:

{
    "_id": ObjectId("5f8554f49a8c7ff8d844555f"),
    "xxoo": ["x", "x", "o", "o"],
    "length": NumberInt("0")
    ……
}

?期望方法:
db.getCollection("xxx").update({'_id': '5f8554f49a8c7ff8d844555f'},{$set: {'length': {$size: $xxoo}})


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...