I am trying to register the current route with Angular 2 Router using the sample code from the official documentation: https://angular.io/docs/ts/latest/api/router/OnActivate-interface.html
import {Component} from 'angular2/core'; import { OnActivate, ComponentInstruction } from 'angular2/router'; @Component({selector: 'header-title', template: `<div>routerOnActivate: {{log}}</div>`}) export class HeaderTitle implements OnActivate { log: string = ''; routerOnActivate(next: ComponentInstruction, prev: ComponentInstruction) { console.log('hello on activate'); this.log = `Finished navigating from "${prev ? prev.urlPath : 'null'}" to "${next.urlPath}"`; } }
The routerOnActivate method routerOnActivate never called.
I configured the routes using the RouteConfig annotation:
@RouteConfig([ {path: '/', component: Home, name: 'Index', data: {title: 'Index page'}}, {path: '/home', component: Home, name: 'Home', data: {title: 'Welcome Home'}}, {path: '/**', redirectTo: ['Index']} ])
Is there anything else I need to configure in Router to activate listeners?
angular angular2-routing
geraldpereira
source share