我想用db中的文本设置面包屑,但似乎在此之前路由了注册。我怎样才能做到这一点。
以下是来自app.routing模块的代码:
静态:
{
path: 'home',
component: HomeComponent,
data: {breadcrumb:'Home'},
canActivate: [AuthenticationGuard]
},
动态:
{
path: 'home',
component: HomeComponent,
data: {breadcrumb:DefaultValueSingletonClass.Instance[0]},
canActivate: [AuthenticationGuard]
},