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

时间:2018-03-16 01:16:49

标签: arrays angular typescript object-property

我想读取数组的每个rate属性。我不知道是否有任何方法只能从该费率记录中调用$值?

enter image description here

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

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

1 个答案:

答案 0 :(得分:1)

因此,您可以使用map方法获取一组费率,然后使用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
}