我要访问字段类别和specCategory。我应用了*ngFor="let x of data" {{x._id.category}}
,但是它不起作用。它出什么问题了?
我正在使用聚合功能对类别进行分组。
$group: {
_id: {
category: "$category",
specCategory: "$specCategory"
},
min: {$min: '$price'},
max: {$max: 500},
total:{$sum:1}
}
结果:
[ { _id: { category: 'Wasser & Wind', specCategory: 'Surfen' }, min: 49, max: 500, total: 1 }, { _id: { category: 'Reisen', specCategory: 'Hotel' }, min: 49, max: 500, total: 1 } ]
我将需要访问类别,specCategory和总价值
最佳答案
您会错过大括号。
{ _id: { category: 'Reisen', specCategory: 'Hotel' },
应该
{ _id: { category: 'Reisen', specCategory: 'Hotel' }},
我添加了plunker来查看文件:app / app.component.ts
关于javascript - 通过Angular访问对象,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41636220/