当前位置:  开发笔记 > 编程语言 > 正文

在react-router中模块化路由

如何解决《在react-router中模块化路由》经验,为你挑选了1个好方法。

有没有办法用react-router来模块化你的路线,然后只需导入它们并组装它们?

所以不是这样的:

  
    
      
        
        
      
      
        
          
            
          
        
      
    
  

你可以这样做:

let InboxRoutes = React.createClass({
  render: function(){
    return (
      
        
        
      
    );
  }
});


    
      
      
    
  

我明白了: Warning: Location did not match any routes



1> ali404..:

一种解决方案是将它们包装在变量中:

let InboxRoutes = (
    
        
        
    
)

let CalendarRoutes = (/* define routes like above */)

let routes = (
    
        
            {InboxRoutes}
            {CalendarRoutes}
        
    
)

render(routes, document.getElementById("app"))

注意:您应该记住放入父路由的render方法 {this.props.children}

推荐阅读
无名有名我无名_593
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有