角度 4 - 从对象数组中读取属性

Posted

技术标签:

【中文标题】角度 4 - 从对象数组中读取属性【英文标题】:angular 4 - read property from an array of objects 【发布时间】:2018-08-24 23:48:01 【问题描述】:

我想读取数组的每个速率属性。我不知道有没有什么方法可以只从该费率记录中调用 $values ??

我这样做是为了调用这个数组:

async ngOnInit() 
    this.product$ = await this.reviewService.getReview(this.product.$key);
    this.key = Object.values(this.product.reviews);

【问题讨论】:

你想要总费率吗? 实际上我要对此求和,所以是的,我需要按速率值迭代并将其求和到变量 【参考方案1】:

所以你可以使用 map 方法来获取一个 rate 数组,然后使用 reduce,我的意思是:

ngOnInit():void
    // get an array of rates 
    const rates = yourArray.map(item => item.rate) // rates=[2,3,5,1,..]

    // use reduce function to calculate the sum
    const sum = rates.reduce(this.total)
 



private total(total,num)
   return total + num

【讨论】:

是的,这就是我要找的,非常感谢! 我的快乐男人!

以上是关于角度 4 - 从对象数组中读取属性的主要内容,如果未能解决你的问题,请参考以下文章

如何使用角度 7 从对象数组中返回 userPass 的值?

角度切片对象数组

使用角度 6 从对象数组中获取百分比

带有数组的角度绑定对象从组件到使用 ngModels 进行查看

对象数组:无法读取 onchange 事件中未定义的属性“id”

遍历对象数组-TypeError:无法读取未定义的属性“名称”