作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 MongoDB
中有以下对象:
[
{
"name": "pencil",
"purchase_record": {
"1":"$900",
"2":"$1000",
"3":"$1100",
"4":"$1200"
}
},
{
"name": "pen",
"purchase_record": {
"1":"$1000",
"2":"$1200",
"3":"$900",
"4":"$1100",
"5":"$1100"
}
}
]
有没有办法获取每条记录的purchase_record
长度?
最佳答案
这是一个老问题,但答案很简单 $objectToArray
,可从 MongoDB 版本 3.4.4 获取
你可以这样做;
db.collection.aggregate([
{
$project: {
_id: 0,
name: 1,
purchaseCount: {
$size: {
"$objectToArray": "$purchase_record"
}
}
}
}
])
这将给出 purchase_record
中的字段计数,结果将是;
[
{
"name": "pencil",
"purchaseCount": 4
},
{
"name": "pen",
"purchaseCount": 5
}
]
在mongoplayground上以交互方式查看它
关于mongodb - 有没有办法获取mongodb中对象字段的长度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33980455/
我是一名优秀的程序员,十分优秀!