我可以在路线中途使用 Angular2 Router.navigate 导航到具有 ID 的 url

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

我有一条路线与

一起工作
this.router.navigate(["/approvals", id]);

导航到 /approvals/[id]

我想知道如何路由到 /approvals/[id]/users

有人知道吗?

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