chris31389
chris31389

Reputation: 9356

Can I use Angular2 Router.navigate to navigate to a url with ID midway through route

I've got a route working with

this.router.navigate(["/approvals", id]);

which navigates to /approvals/[id]

I'm wondering how I can route to /approvals/[id]/users

Does anyone know?

Upvotes: 0

Views: 39

Answers (1)

Pace
Pace

Reputation: 43887

this.router.navigate(["/approvals", id, "users"])

Upvotes: 1

Related Questions