mongdb查询问题?
{
"_id" : 1,
"label" : "1111",
"files" : [
{
"id" : "aaa",
"createAt" : 1559803584563.0,
"updateAt" : 1559803584563.0,
"status" : 0,
"annotationsUsers" : []
},
{
"id" : "bbb"
"createAt" : 1561083788761.0,
"updateAt" : 1561083788761.0,
"status" : 0,
"annotationsUsers" : []
}
]
}
{
"_id" : 2,
"label" : "1111",
"files" : [
{
"id" : "ccc",
"createAt" : 1559803584563.0,
"updateAt" : 1559803584563.0,
"status" : 0,
"annotationsUsers" : []
},
{
"id" : "ddd"
"createAt" : 1561083788761.0,
"updateAt" : 1561083788761.0,
"status" : 0,
"annotationsUsers" : []
}
]
}
这是一个mongodb得文档内容,想查询其中_id为2且files里边id为ccc得内容应该怎么查
dbo.collection('AnnotationFileGroups').findOne({_id: groupId,"files.id":"ccc"}, {files:{$elemMatch:{id:"ccc"}}},(e, result) => {})
我这样查仍然查到的是_id为2的整个文档应该怎么改?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
方法1:根据_id为2获取doc => 得到files => 刷选出_id为ccc的数据。
方法2:files作为一个Collection