javascript - React-router 路由嵌套问题
天蓬老师
天蓬老师 2017-04-11 12:35:37
0
2
830


我的路由嵌套如上图,为什么访问#/inspection或#/report,对应组件并未加载呢?
在Overview组件this.props.chidlren是null。
React-router不可以多重嵌套吗?求教

天蓬老师
天蓬老师

欢迎选择我的课程,让我们一起见证您的进步~~

reply all(2)
刘奇

直接上代码吧,相信很容易看懂

    export function createRoutes() {
      return {
        path: '/',
        component: Foo,
        indexRoute: { component: Main },
        childRoutes: [
          { path: 'Start', component: Started },
          {
            path: 'Showcase',
            component: Case,
            childRoutes: [
              { path: 'Bash', component: Bash },
              { path: 'Comment', component: Comment },
            ],
          },
          { path: 'Blog', component: Blog },
        ],
      };
    }

另外,再加个地址,不知道你知道不http://react-guide.github.io/...

PHPzhong

你的应该是#/overview/inspection吧

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template