Angular2路由不支持多次重定向吗?
Angular2路由不支持多次重定向吗?
根路由模块
# app.routing.module
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
// 根路由列表
const routes: Routes = [
{ path: '', redirectTo: 'manage', pathMatch: 'full' }
];
@NgModule({
imports: [ RouterModule.forRoot(routes, { enableTracing: true, useHash: true }) ],
exports: [ RouterModule ]
})
export class AppRoutingModule {}
管理模块路由列表
const manage_routes: Routes = [
{
{ path: 'manage', redirectTo: 'manage/dashboard_conf', pathMatch: 'full' },
{ path: 'manage/dashboard_conf', component: DashboardConfComponent },
{ path: 'manage/image_upload', component: ImageUploadComponent },
{ path: 'manage/image_conf', component: ImageConfComponent }
}
]
我原先的想法是
127.0.0.1:8888 重定向 127.0.0.1:8888/manage
127.0.0.1:8888/manage 重定向 127.0.0.1:8888/manage/dashboard_conf
报错:
Invalid configuration of route ''. One of the following must be provided: component, redirectTo, children or loadChildren
请教如何实现?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
写错了,应该是上面的路由列表。
Angualr2是支持路由多次重定向的。