【发布时间】:2021-06-19 01:44:20
【问题描述】:
入门-
export class HeaderComponent implements OnInit {
constructor(private route: ActivatedRoute, private router: Router) {}
onClick() {
const navigationExtras: NavigationExtras = {
state: {
transd: 'TRANS001',
workQueue: false,
services: 10,
code: '003',
},
};
this.router.navigate(['/auth'], navigationExtras);
}
}
AuthComponent - 在 ngOnInit() 内部使用时:
ngOnInit(): void {
this.authService.authError.subscribe(
(error) => (this.errorMessage = error)
);
const navigation = this.router.getCurrentNavigation();
const state = navigation.extras.state as {
transId: string;
workQueue: boolean;
services: number;
code: string;
};
console.dir(state);
}
在 ngOnInit() 中使用时,它给了我一个错误:
core.js:5980 ERROR TypeError: Cannot read property 'extras' of null
at AuthComponent.ngOnInit (auth.component.ts:26)
at callHook (core.js:2486)
at callHooks (core.js:2457)
at executeInitAndCheckHooks (core.js:2408)`
at refreshView (core.js:9207)
at refreshEmbeddedViews (core.js:10312)
at refreshView (core.js:9216)
at refreshComponent (core.js:10358)
at refreshChildComponents (core.js:8989)
at refreshView (core.js:9242)
但是当我将它放在构造函数中时它工作正常:
constructor(private authService: AuthService, private router: Router) {
const navigation = this.router.getCurrentNavigation();
const state = navigation.extras.state as {
transId: string;
workQueue: boolean;
services: number;
code: string;
};
console.dir(state);
}
那么,为什么它在构造函数中有效,但在 ngOnInit 中无效?
【问题讨论】:
标签: angular routes angular-router angular11