是否可以在角度2路由中使用部分静态参数? 我要解释一下:
现在我正在使用像这样的经典参数:
const routes: Routes = [
{
path: ':type/fine.html',
pathMatch: 'full',
redirectTo: ':type/fine'
}
但我可以使用这样的东西:
const routes: Routes = [
{
path: 'static-:type/fine.html',
pathMatch: 'full',
redirectTo: 'static-:type/fine'
}
能够完全重定向到static-{{parameterValue}}/fine
。
有可能吗?
答案 0 :(得分:5)
经过多次尝试,我已经达到了不可能做类似事情的知识。因此,在此示例后,我使用路由保护实现了完全不同的方法:
http://www.sparkbit.pl/angular-2-route-guards-real-life-example/
回答任何会发现同样问题的人。