最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Typescript undefined is not an object when pushing to array - Stack Overflow

programmeradmin0浏览0评论

I am trying to push to an array but it keeps giving me this error:

Uncaught (in promise): TypeError: Cannot read property 'push' of undefined
TypeError: Cannot read property 'push' of undefined

here is the source where I am simply adding to an array. I take the obsevable from the firestore collection and loop through it. Why is it giving me this error when the array of category objects is right there. categories: Category[];

transactions: Observable<Transaction[]>;
categories: Category[];

private organizeData() {
    let category: Category;

    this.transactions.forEach(v => {
      for (let i = 0; i < v.length; i++) {
        category = {name: v[i].category, totalSpent: v[i].amount};
        this.categories.push(category);
      }
    });
  }

I am trying to push to an array but it keeps giving me this error:

Uncaught (in promise): TypeError: Cannot read property 'push' of undefined
TypeError: Cannot read property 'push' of undefined

here is the source where I am simply adding to an array. I take the obsevable from the firestore collection and loop through it. Why is it giving me this error when the array of category objects is right there. categories: Category[];

transactions: Observable<Transaction[]>;
categories: Category[];

private organizeData() {
    let category: Category;

    this.transactions.forEach(v => {
      for (let i = 0; i < v.length; i++) {
        category = {name: v[i].category, totalSpent: v[i].amount};
        this.categories.push(category);
      }
    });
  }
Share Improve this question edited Jun 21, 2018 at 17:10 Frank van Puffelen 600k85 gold badges890 silver badges860 bronze badges asked Jun 21, 2018 at 15:41 Zach StarnesZach Starnes 3,1989 gold badges42 silver badges66 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 8

categories: Category[] is just the declaration of an array, you need to actually create a new array and assign it to the field:

categories: Category[] = []

You are not initiating your array categories so it will return undefined. Try:

categories: Category[] = [];

发布评论

评论列表(0)

  1. 暂无评论