在解析器/服务内部获取路由的路径参数-Angular

时间:2019-07-23 16:14:23

标签: angular observable angular-resolver

我需要使用包含服务的解析器,该服务根据Route中的ID返回值。

我的路线如下所示:

     {
    path: 'protected',
    component: MainComponent,
       children:[{
              path: 'users',
              components: DashboardComponent,
              children:[{
                    path: ":cID",
                   component: TabsComponent,
                  resolve: {
                    dropdowns: DataResolver

                   }
               }]

            }]
}

cID的值是我需要在DataResolver或在解析器内部调用的服务中获取的值。我尝试了this.activatedRoute.snapshot.param,但是我什么也没有。您能帮上忙吗?

0 个答案:

没有答案