元芳怎么了
2019-11-29 11:06:37
如何在Angular 2路由器中監(jiān)聽(tīng)狀態(tài)變化?在Angular 1.x中,我使用了以下事件:$rootScope.$on('$stateChangeStart', function(event,toState,toParams,fromState,fromParams, options){ ... })因此,如果我在Angular 2中使用此事件監(jiān)聽(tīng)器:window.addEventListener("hashchange", () => {return console.log('ok')}, false);它不會(huì)返回“ ok”,然后從JS更改狀態(tài),只有在瀏覽器history.back()函數(shù)運(yùn)行之后才可以。使用router.subscribe()函數(shù)作為服務(wù):import {Injectable} from 'angular2/core';import {Router} from 'angular2/router';@Injectable()export class SubscribeService { constructor (private _router: Router) { this._router.subscribe(val => { console.info(val, '<-- subscribe func'); }) }}在路由中初始化的組件中注入服務(wù):import {Component} from 'angular2/core';import {Router} from 'angular2/router';@Component({ selector: 'main', templateUrl: '../templates/main.html', providers: [SubscribeService]})export class MainComponent { constructor (private subscribeService: SubscribeService) {}}我在其他組件(例如本示例)中注入了此服務(wù)。然后我更改狀態(tài),服務(wù)中的console.info()無(wú)法正常工作。我做錯(cuò)了什么?
3 回答

慕勒3428872
TA貢獻(xiàn)1848條經(jīng)驗(yàn) 獲得超6個(gè)贊
您也可以使用過(guò)濾事件filter()。
但不要只是使用filter(e => e is NavigationEnd)
更好的解決方案是添加一個(gè)“類型防護(hù)”,filter()例如:
filter((e): e is NavigationEnd => e instanceof NavigationEnd),
它包含兩件事:
e is NavigationEnd 這是您要為其定義函數(shù)的斷言(這是打字稿語(yǔ)法)
e instanceof NavigationEnd 這是檢查類型的實(shí)際運(yùn)行時(shí)代碼
這樣做的好處是,運(yùn)算符位于“管道”的更深處,如下map所示,現(xiàn)在知道類型是NavigationEnd,但是如果沒(méi)有類型保護(hù),您將擁有一個(gè)type Event。
如果只需要檢查一種事件類型,那么這是最干凈的方法。在嚴(yán)格模式下,這似乎對(duì)于避免編譯器錯(cuò)誤很有必要。
添加回答
舉報(bào)
0/150
提交
取消