如何在Angular应用程序中检测循环和内存不足?

时间:2018-07-18 12:30:08

标签: angular angular6

例如,我有一段代码禁止在this.menuHeaders.push()行上应用:

for (let j = 0; j < profiles.length; j++) {
     this.createBlocksByRole(profiles[j]);
}

public createBlocksByRole(profile: ProfileBase) {
    this.menuHeaders.push(
      new MenuHeader(profile, this.i18nService)
    );
  }

我该如何调查原因,并检测内存不足并循环?

0 个答案:

没有答案