有没有办法设置通用 ngOnInit() 在 Angular 应用程序的每个页面上执行?而不是写在每一页:
import { AppComponent } from '../app.component';
constructor(
private app: AppComponent) {}
ngOnInit(): void {
this.app.doCommonStuffForEachPage();
}
我想简单地写一次这段代码,当路由器打开每个页面时, this.app.doCommonStuffForEachPage() 会被调用。