gpt4 book ai didi

javascript - 通过 Angular 访问对象

转载 作者:行者123 更新时间:2023-12-03 05:15:13 25 4
gpt4 key购买 nike

我想访问字段category和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 和总值(value)

最佳答案

你错过了右大括号。

{ _id: { category: 'Reisen', specCategory: 'Hotel' },

应该是

{ _id: { category: 'Reisen', specCategory: 'Hotel' }},

我添加了plunker查看文件:app/app.component.ts

关于javascript - 通过 Angular 访问对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41636220/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com