如何将此json数据存储在数组中

时间:2019-03-13 15:59:54

标签: angular

View json image

export class XComponent implements OnInit {
      plans: any;
      totalSubscriber = []
    constructor(activatedRoute: ActivatedRoute) { 
        activatedRoute.data.subscribe((res)=>{
          this.plans = res.plansresolve.data;
        });

所有json数据都位于plans属性中。 目前,我正在对totalSubscriber = [2500,5000, and so on....]

进行硬编码

我如何从json数据中获取所有订阅者总数,并将其存储在数组中,如上所示。

1 个答案:

答案 0 :(得分:1)

使用map

this.totalSubscriber  = this.plans.map((plan) => plan.subscriber_count);