我想读取数组的每个rate属性。我不知道是否有任何方法只能从该费率记录中调用$值?
我这样做是为了调用这个数组:
async ngOnInit() {
this.product$ = await this.reviewService.getReview(this.product.$key);
this.key = Object.values(this.product.reviews);
}
答案 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
}