react-route 不念不忘少年蓝@ 2022-06-13 14:19 138阅读 0赞 **一、基本用法** React Router 安装命令如下。 > $ npm install -S react-router 使用时,路由器Router就是React的一个组件。 > import \{ Router \} from ‘react-router’; render(, > document.getElementById(‘app’)); Router组件本身只是一个容器,真正的路由要通过Route组件定义。 > import \{ Router, Route, hashHistory \} from ‘react-router’; > > render(( > ), document.getElementById(‘app’)); 上面代码中,用户访问根路由/(比如[http://www.example.com/][http_www.example.com]),组件APP就会加载到document.getElementById(‘app’)。 你可能还注意到,Router组件有一个参数history,它的值hashHistory表示,路由的切换由URL的hash变化决定,即URL的\#部分发生变化。举例来说,用户访问[http://www.example.com/][http_www.example.com],实际会看到的是[http://www.example.com/\#/][http_www.example.com 1]。 Route组件定义了URL路径与组件的对应关系。你可以同时使用多个Route组件。 <Router history={hashHistory}> <Route path="/" component={App}/> <Route path="/repos" component={Repos}/> <Route path="/about" component={About}/> </Router> 上面代码中,用户访问/repos(比如[http://localhost:8080/\#/repos][http_localhost_8080_repos])时,加载Repos组件;访问/about([http://localhost:8080/\#/about][http_localhost_8080_about])时,加载About组件。 **二、嵌套路由** Route组件还可以嵌套。 <Router history={hashHistory}> <Route path="/" component={App}> <Route path="/repos" component={Repos}/> <Route path="/about" component={About}/> </Route> </Router> 上面代码中,用户访问/repos时,会先加载App组件,然后在它的内部再加载Repos组件。 <App> <Repos/> </App> App组件要写成下面的样子。 export default React.createClass({ render() { return <div> { this.props.children} </div> } }) 上面代码中,App组件的this.props.children属性就是子组件。 子路由也可以不写在Router组件里面,单独传入Router组件的routes属性。 let routes = <Route path="/" component={App}> <Route path="/repos" component={Repos}/> <Route path="/about" component={About}/> </Route>; <Router routes={routes} history={browserHistory}/> **三、 path 属性** Route组件的path属性指定路由的匹配规则。这个属性是可以省略的,这样的话,不管路径是否匹配,总是会加载指定组件。 请看下面的例子。 <Route path="inbox" component={Inbox}> <Route path="messages/:id" component={Message} /> </Route> 上面代码中,当用户访问/inbox/messages/:id时,会加载下面的组件。 <Inbox> <Message/> </Inbox> 如果省略外层Route的path参数,写成下面的样子。 <Route component={Inbox}> <Route path="inbox/messages/:id" component={Message} /> </Route> 现在用户访问/inbox/messages/:id时,组件加载还是原来的样子。 <Inbox> <Message/> </Inbox> **四、通配符** path属性可以使用通配符。 和正则表达式是一样的,详情请参考相关的正则路由 -------------------- **五、IndexRoute 组件** 下面的例子,你会不会觉得有一点问题? <Router> <Route path="/" component={App}> <Route path="accounts" component={Accounts}/> <Route path="statements" component={Statements}/> </Route> </Router> 上面代码中,访问根路径/,不会加载任何子组件。也就是说,App组件的this.props.children,这时是undefined。 因此,通常会采用`{this.props.children || <Home/>}`这样的写法。这时,Home明明是Accounts和Statements的同级组件,却没有写在Route中。 IndexRoute就是解决这个问题,显式指定Home是根路由的子组件,即指定默认情况下加载的子组件。你可以把IndexRoute想象成某个路径的index.html。 <Router> <Route path="/" component={App}> <IndexRoute component={Home}/> <Route path="accounts" component={Accounts}/> <Route path="statements" component={Statements}/> </Route> </Router> 现在,用户访问/的时候,加载的组件结构如下。 <App> <Home/> </App> 这种组件结构就很清晰了:App只包含下级组件的共有元素,本身的展示内容则由Home组件定义。这样有利于代码分离,也有利于使用React Router提供的各种API。 注意,IndexRoute组件没有路径参数path。 **六、Redirect 组件** `<Redirect>` 组件用于路由的跳转,即用户访问一个路由,会自动跳转到另一个路由。 <Route path="inbox" component={Inbox}> {/* 从 /inbox/messages/:id 跳转到 /messages/:id */} <Redirect from="messages/:id" to="/messages/:id" /> </Route> 现在访问/inbox/messages/5,会自动跳转到/messages/5。 -------------------- **七、IndexRedirect 组件** IndexRedirect组件用于访问根路由的时候,将用户重定向到某个子组件。 <Route path="/" component={App}> <IndexRedirect to="/welcome" /> <Route path="welcome" component={Welcome} /> <Route path="about" component={About} /> </Route> 上面代码中,用户访问根路径时,将自动重定向到子组件welcome。 **八、Link** Link组件用于取代`<a>`元素,生成一个链接,允许用户点击后跳转到另一个路由。它基本上就是`<a>`元素的React 版本,可以接收Router的状态。 render() { return <div> <ul role="nav"> <li><Link to="/about">About</Link></li> <li><Link to="/repos">Repos</Link></li> </ul> </div> } 如果希望当前的路由与其他路由有不同样式,这时可以使用Link组件的activeStyle属性。 <Link to="/about" activeStyle={ { color: 'red'}}>About</Link> <Link to="/repos" activeStyle={ { color: 'red'}}>Repos</Link> 上面代码中,当前页面的链接会红色显示。 另一种做法是,使用activeClassName指定当前路由的Class。 <Link to="/about" activeClassName="active">About</Link> <Link to="/repos" activeClassName="active">Repos</Link> 上面代码中,当前页面的链接的class会包含active。 在Router组件之外,导航到路由页面,可以使用浏览器的History API,像下面这样写。 import { browserHistory } from 'react-router'; browserHistory.push('/some/path'); **九、IndexLink** 如果链接到根路由/,不要使用Link组件,而要使用IndexLink组件。 这是因为对于根路由来说,activeStyle和activeClassName会失效,或者说总是生效,因为/会匹配任何子路由。而IndexLink组件会使用路径的精确匹配。 <IndexLink to="/" activeClassName="active"> Home </IndexLink> 上面代码中,根路由只会在精确匹配时,才具有activeClassName。 另一种方法是使用Link组件的onlyActiveOnIndex属性,也能达到同样效果。 <Link to="/" activeClassName="active" onlyActiveOnIndex={ true}> Home </Link> 实际上,IndexLink就是对Link组件的onlyActiveOnIndex属性的包装。 **十、histroy 属性** Router组件的history属性,用来监听浏览器地址栏的变化,并将URL解析成一个地址对象,供 React Router 匹配。 history属性,一共可以设置三种值。 browserHistory hashHistory createMemoryHistory 如果设为hashHistory,路由将通过URL的hash部分(\#)切换,URL的形式类似example.com/\#/some/path。 import { hashHistory } from 'react-router' render( <Router history={hashHistory} routes={routes} />, document.getElementById('app') ) 如果设为browserHistory,浏览器的路由就不再通过Hash完成了,而显示正常的路径example.com/some/path,背后调用的是浏览器的History API。 import { browserHistory } from 'react-router' render( <Router history={browserHistory} routes={routes} />, document.getElementById('app') ) 但是,这种情况需要对服务器改造。否则用户直接向服务器请求某个子路由,会显示网页找不到的404错误。 如果开发服务器使用的是webpack-dev-server,加上–history-api-fallback参数就可以了。 $ webpack-dev-server --inline --content-base . --history-api-fallback createMemoryHistory主要用于服务器渲染。它创建一个内存中的history对象,不与浏览器URL互动。 const history = createMemoryHistory(location) **十一、表单处理** Link组件用于正常的用户点击跳转,但是有时还需要表单跳转、点击按钮跳转等操作。这些情况怎么跟React Router对接呢? 下面是一个表单。 <form onSubmit={this.handleSubmit}> <input type="text" placeholder="userName"/> <input type="text" placeholder="repo"/> <button type="submit">Go</button> </form> 第一种方法是使用browserHistory.push import { browserHistory } from 'react-router' // ... handleSubmit(event) { event.preventDefault() const userName = event.target.elements[0].value const repo = event.target.elements[1].value const path = `/repos/${userName}/${repo}` browserHistory.push(path) }, 第二种方法是使用context对象。 export default React.createClass({ // ask for `router` from context contextTypes: { router: React.PropTypes.object }, handleSubmit(event) { // ... this.context.router.push(path) }, }) **十二、路由的钩子** 每个路由都有Enter和Leave钩子,用户进入或离开该路由时触发。 <Route path="about" component={About} /> <Route path="inbox" component={Inbox}> <Redirect from="messages/:id" to="/messages/:id" /> </Route> 上面的代码中,如果用户离开/messages/:id,进入/about时,会依次触发以下的钩子。 /messages/:id的onLeave /inbox的onLeave /about的onEnter 下面是一个例子,使用`onEnter`钩子替代`<Redirect>`组件。 <Route path="inbox" component={Inbox}> <Route path="messages/:id" onEnter={ ({ params}, replace) => replace(`/messages/${params.id}`) } /> </Route> 下面是一个高级应用,当用户离开一个路径的时候,跳出一个提示框,要求用户确认是否离开。 const Home = withRouter( React.createClass({ componentDidMount() { this.props.router.setRouteLeaveHook( this.props.route, this.routerWillLeave ) }, routerWillLeave(nextLocation) { // 返回 false 会继续停留当前页面, // 否则,返回一个字符串,会显示给用户,让其自己决定 if (!this.state.isSaved) return '确认要离开?'; }, }) ) 上面代码中,setRouteLeaveHook方法为Leave钩子指定routerWillLeave函数。该方法如果返回false,将阻止路由的切换,否则就返回一个字符串,提示用户决定是否要切换。 **The End** [http_www.example.com]: http://www.example.com/ [http_www.example.com 1]: http://www.example.com/#/ [http_localhost_8080_repos]: http://localhost:8080/#/repos [http_localhost_8080_about]: http://localhost:8080/#/about
相关 P05: 实例-ReactRouter嵌套路由 React Router 阐述 用脚手架创建项目 初始化基本目录 添加基本样式 编写frontCourse中的子页面 编写 \`Fro 逃离我推掉我的手/ 2023年10月06日 20:59/ 0 赞/ 28 阅读
相关 P04: ReactRouter路由重定向-Redirect使用 React Router 阐述 标签式重定向 编程式重定向 示例 ReactRouterDemo\\demo01\\src\\inde 待我称王封你为后i/ 2023年10月06日 20:58/ 0 赞/ 37 阅读
相关 P02: 使用ReactRouter制作网页 React Router 阐述 编写Index组件 编写List组件 修改 \`AppRouter.js\` 文件 exact 精准匹 一时失言乱红尘/ 2023年10月06日 20:58/ 0 赞/ 29 阅读
相关 ReactRouter 4 前瞻 ReactRouter 4 这次改动挺大的,后面又要折腾一次了!! 作者:杨森 链接:https://zhuanlan.zhihu.com/p/ 青旅半醒/ 2022年09月26日 04:56/ 0 赞/ 21 阅读
相关 React实战-通过ReactRouter-example分析Router用法 React实战\-通过ReactRouter-example分析Router用法 在我们了解完一种新的Web框架或者语言后,总是从各个单个的知识点了解,做着一个一个Demo, 淩亂°似流年/ 2022年09月26日 02:09/ 0 赞/ 219 阅读
相关 简单而又详细的react+reactRouter+redux项目 看了网上的很多关于reactRouter和redux的文章,感觉自己理解的都很乱,众说纷纭,不知道从何下手,其实我就是想要一套开发项目的模板,就这么简单。看了挺多文章,所以现在 小咪咪/ 2021年09月15日 05:12/ 0 赞/ 358 阅读
还没有评论,来说两句吧...