我正在尝试将值push迭代为array

json_resp是Json的响应。

我的打字稿代码

export class hello {

  CategoryLst:any[];

  var catIndex,BillerIndex;

  for(catIndex = 0; catIndex <= json_resp.category.length; catIndex++) {
    var Clst = json_resp.category[0].categoryName;
    this.CategoryLst.push(Clst);
  }
}


在尝试执行其抛出错误时

原始异常:TypeError:无法读取未定义的属性“推”

我有什么想念的吗?

最佳答案

尝试这个

CategoryLst:any[] = [];

09-25 18:57