最佳答案
如何监听角2路由器的状态变化?
在 Angular 1.x 中,我使用了这个事件:
$rootScope.$on('$stateChangeStart',
function(event,toState,toParams,fromState,fromParams, options){ ... })
因此,如果我在角度2中使用这个事件侦听器:
window.addEventListener("hashchange", () => {return console.log('ok')}, false);
它不返回‘ ok’,然后从 JS 改变状态,只有这样才能运行浏览器 history. back ()函数。
使用 router.ordering ()函数作为服务:
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');
})
}
}
在路由中初始化的组件中注入服务:
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) {}
}
我将这个服务注入到其他组件中,如本例中所示。然后我改变状态,console.info ()在服务中不工作。
我做错了什么?