如何修改嵌套文档Mongo的每个字段?
所以想象我有以下文档:
{
"_id":...,
"data":{"a":[],"b":[],"x":[]}
}
我事先不知道子文档 data
可能有哪些字段。我只知道该子文档中的每个字段都将是一个数组
如何进行更新以使对象结果如下:
{
"_id":...,
"data":{"a":[1],"b":[1],"x":[1]}
}
约束:仅使用 mongodb 运算符。一次更新。不知道“数据”子文档中的字段
so imagine I have the following document:
{
"_id":...,
"data":{"a":[],"b":[],"x":[]}
}
I don't know beforehand which fields the subdocument data
may have. I just know that every field in that subdocument will be an array
How do I make an update so that the object results like:
{
"_id":...,
"data":{"a":[1],"b":[1],"x":[1]}
}
Constraint: Using only mongodb operators. One single update. Without knowing the fields inside the 'data' subdocument
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
mongoplayground
mongoplayground