作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 mongo 中,我存储具有“titleComposite”字段的对象。该字段包含标题对象数组,如下所示:
"titleComposite": [
"0": {
"titleType": "01",
"titleText": "Test cover uploading"
}
]
我正在执行查询,并且我只想接收返回值的“titleText”值。这是我的查询示例:
db.onix_feed.find({"addedBy":201, "mediaFileComposite":{$exists:false}}, {"isbn13":1,"titleComposite.titleText":1})
在结果中我看到类似的值
{
"_id" : ObjectId("559ab286fa4634f309826385"),
"titleComposite" : [ { "titleText" : "The Nonprofit World" } ],
"isbn13" : "9781565495296"
}
有什么方法可以摆脱“titleComposite”包装对象并仅接收 titleText 吗?例如,只取第一个元素的titleText?
非常感谢任何帮助
最佳答案
你可以mongodb aggregation达到您预期的结果。按如下方式重新排列您的查询...
db.onix_feed.aggregate([
{
$match: {
$and: [
{"addedBy":201},
{"mediaFileComposite":{$exists:false}}
]
}
},
{
$project : { titleText: "$titleComposite.titleText",
"isbn13" : 1 }
}
])
关于mongodb - 蒙戈 : select only one field from the nested object,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31348876/
我是一名优秀的程序员,十分优秀!