React-Route相关

官方教程

react-route官方教程非常完善,而且一步一步,通俗易懂,入门可以参看官方教程
https://github.com/reactjs/react-router-tutorial
进阶示例
https://github.com/ReactTraining/react-router

最简单的示例

render((
   /*浏览器历史*/
     /*渲染'/'下的组件为App*/
      
      
        /*获取:userId作为地址*/
      
      
    
  
), document.getElementById('root'))

可以用于跳转的a标签

/*跳转方法*/
goHome() {
  this.context.router.push('/');//可以是任何路由
}
/*组件*/
render(
  ...
this.goHome()} >gohome
  ...
)
/*为组件添加propTypes属性以使用上述方法*/
TheComp.contextTypes = {
    router: React.PropTypes.object.isRequired
}

路由容器

未完待续

你可能感兴趣的:(React-Route相关)