javascript - angular2 rc3版本的路由问题

 宝贝缘缘儿 发布于 2022-11-12 10:15

为什么带有子路由的父路由之间不能相互跳?其他的跳路由时正常。
这是我的代码:

export const MainRoutes:RouterConfig=[
    {path: 'static/setting', component: Setting,children:[
        {path: '', redirectTo: 'network', terminal: true},
        {path: 'network', component: SettingNetwork},
        {path: 'date', component: SettingTimeAndDate},
        {path: 'video', component: SettingVideo}
    ]},
    {path: 'static/deployment', component: Deployment},
    {path: 'static/real_time_results', component: RealTimeResults},
    {path: 'static/whitelists', component: WhiteLists,children:[
        {path: '', redirectTo: 'recognition', terminal: true},
        {path: 'recognition', component: Recognition},
        {path: 'white', component: White},
        {path: 'black', component: Black }
    ]},
]

seedApp html:

  • {{menu.name}}

  • seedApp ts:

    private menus=[
            {name:'实时结果',address:'/static/real_time_results'},
            {name:'部署设置',address:'/static/deployment'},
            {name:'白名单',address:'/static/whitelists'},
            {name:'设置',address:'/static/setting'},
        ];

    setting html:

  • 日期和时间
  • 网络
  • 视频
  • 2 个回答
    • angular2,有没有教程,想学来着。

      2022-11-12 10:59 回答
    • routerLink不应该把相对路径以/开头写全吗?

      2022-11-12 10:59 回答
    撰写答案
    今天,你开发时遇到什么问题呢?
    立即提问
    热门标签
    PHP1.CN | 中国最专业的PHP中文社区 | PNG素材下载 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
    Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有