Angular2路由不支持多次重定向吗?

发布于 2022-09-06 21:30:24 字数 1120 浏览 25 评论 0

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白色秋天 2022-09-13 21:30:24
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 }
]

写错了,应该是上面的路由列表。
Angualr2是支持路由多次重定向的。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文