我正在尝试链接路由器解析器
这是我的路由器选项。
{ path: '',
component: AdminComponent,
resolve: [
SessionResolve,
LocaleResolve
]
}
我想调用SessionService(SessionResolve),然后使用 Session 数据的 lang 值调用LocaleService(LocaleResolve)
但是,上述代码调用同时解析
我认为在这里解决代码更改 但我不知道,因为我以前没有使用过 Angular4。
有没有办法可以使用 resolve 作为 chanining?还是我应该一次解决所有工作?