Search code examples
angularangular2-routing

Passing Multiple route params in Angular2


Is it possible to pass multiple route params e.g. like below need to pass id1 and id2 to the component B

@RouteConfig([
    {path: '/component/:id :id2',name: 'MyCompB', component:MyCompB }
])
export class MyCompA {
  onClick(){
    this._router.navigate( ['MyCompB', {id: "someId", id2: "another ID"}]);
     }
}

Solution

  • OK realized a mistake .. it has to be /:id/:id2

    Anyway didn't find this in any tutorial or other StackOverflow question.

    @RouteConfig([{path: '/component/:id/:id2',name: 'MyCompB', component:MyCompB}])
    export class MyCompA {
        onClick(){
            this._router.navigate( ['MyCompB', {id: "someId", id2: "another ID"}]);
        }
    }