我尝试在页面中使用app.component.ts
功能,但是错误。
EXCEPTION: Uncaught (in promise): TypeError: undefined is not an object (evaluating 'e.pages.updatePages')
app.component.ts 中的功能:
updatePages(pages){
console.log(pages);
}
page.ts
中的代码this.sidebarpage = [{ title: 'My Account', component: MyAccountPage }];
this.pages.updatePages(this.sidebarpage);
已在page.ts中导入组件并添加了@ViewChild(MyApp) pages: MyApp;