例如,我有一段代码禁止在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)
);
}
我该如何调查原因,并检测内存不足并循环?