父组件:App
@RouteConfig([
{
path: '...',
name: 'Home',
component: HomeCmp
},
{
path: '/404',
name: 'NotFound',
component: Error404Cmp
},
{
path: '/*path',
redirectTo: ['NotFound']
}
])
主页组件:主页
@RouteConfig([
{
path: '',
name: 'ItemsList',
component: itemsListCmp,
useAsDefault: true
},
{
path: 'item/:id/',
name: 'ItemInfo',
component: itemInfoCmp
}
])
当我重定向到 url 中的 ItemInfo 路径时,我有下一个:
http://localhost:9000/#//item/1
为什么在 url 双斜杠“#//”中?我该如何解决它并得到: http://localhost:9000/#/item/1?
谢谢。