参考答案:
react-router
等前端路由的原理大致相同,可以实现无刷新的条件下切换显示不同的页面
路由的本质就是页面的URL
发生改变时,页面的显示结果可以根据URL
的变化而变化,但是页面不会刷新
因此,可以通过前端路由可以实现单页(SPA)应用
react-router
主要分成了几个不同的包:
react-router: 实现了路由的核心功能
react-router-dom: 基于 react-router,加入了在浏览器运行环境下的一些功能
react-router-native:基于 react-router,加入了 react-native 运行环境下的一些功能
react-router-config: 用于配置静态路由的工具库
这里主要讲述的是react-router-dom
的常用API
,主要是提供了一些组件:
Router
中包含了对路径改变的监听,并且会将相应的路径传递给子组件
BrowserRouter
是history
模式,HashRouter
模式
使用两者作为最顶层组件包裹其他组件
1import { BrowserRouter as Router } from "react-router-dom"; 2 3export default function App() { 4 return ( 5 <Router> 6 <main> 7 <nav> 8 <ul> 9 <li> 10 < a href=" ">Home</ a> 11 </li> 12 <li> 13 < a href="/about">About</ a> 14 </li> 15 <li> 16 < a href="/contact">Contact</ a> 17 </li> 18 </ul> 19 </nav> 20 </main> 21 </Router> 22 ); 23}
Route
用于路径的匹配,然后进行组件的渲染,对应的属性如下:
1import { BrowserRouter as Router, Route } from "react-router-dom"; 2 3export default function App() { 4 return ( 5 <Router> 6 <main> 7 <nav> 8 <ul> 9 <li> 10 < a href="/">Home</ a> 11 </li> 12 <li> 13 < a href="/about">About</ a> 14 </li> 15 <li> 16 < a href="/contact">Contact</ a> 17 </li> 18 </ul> 19 </nav> 20 <Route path="/" render={() => <h1>Welcome!</h1>} /> 21 </main> 22 </Router> 23 ); 24}
通常路径的跳转是使用Link
组件,最终会被渲染成a
元素,其中属性to
代替a
标题的href
属性
NavLink
是在Link
基础之上增加了一些样式属性,例如组件被选中时,发生样式变化,则可以设置NavLink
的一下属性:
如下:
1<NavLink to="/" exact activeStyle={{color: "red"}}>首页</NavLink> 2<NavLink to="/about" activeStyle={{color: "red"}}>关于</NavLink> 3<NavLink to="/profile" activeStyle={{color: "red"}}>我的</NavLink>
如果需要实现js
实现页面的跳转,那么可以通过下面的形式:
通过Route
作为顶层组件包裹其他组件后,页面组件就可以接收到一些路由相关的东西,比如props.history
1const Contact = ({ history }) => ( 2 <Fragment> 3 <h1>Contact</h1> 4 <button onClick={() => history.push("/")}>Go to home</button> 5 <FakeText /> 6 </Fragment> 7);
props
中接收到的history
对象具有一些方便的方法,如goBack
,goForward
,push
用于路由的重定向,当这个组件出现时,就会执行跳转到对应的to
路径中,如下例子:
1const About = ({ 2 match: { 3 params: { name }, 4 }, 5}) => ( 6 // props.match.params.name 7 <Fragment> 8 {name !== "tom" ? <Redirect to="/" /> : null} 9 <h1>About {name}</h1> 10 <FakeText /> 11 </Fragment> 12)
上述组件当接收到的路由参数name
不等于 tom
的时候,将会自动重定向到首页
swich
组件的作用适用于当匹配到第一个组件的时候,后面的组件就不应该继续匹配
如下例子:
1<Switch> 2 <Route exact path="/" component={Home} /> 3 <Route path="/about" component={About} /> 4 <Route path="/profile" component={Profile} /> 5 <Route path="/:userid" component={User} /> 6 <Route component={NoMatch} /> 7</Switch>
如果不使用switch
组件进行包裹,相同 path 的就会被匹配到,然后一起展示。
除了一些路由相关的组件之外,react-router
还提供一些hooks
,如下:
useHistory
可以让组件内部直接访问history
,无须通过props
获取
1import { useHistory } from "react-router-dom"; 2 3const Contact = () => { 4 const history = useHistory(); 5 return ( 6 <Fragment> 7 <h1>Contact</h1> 8 <button onClick={() => history.push("/")}>Go to home</button> 9 </Fragment> 10 ); 11};
1const About = () => { 2 const { name } = useParams(); 3 return ( 4 // props.match.params.name 5 <Fragment> 6 {name !== "John Doe" ? <Redirect to="/" /> : null} 7 <h1>About {name}</h1> 8 <Route component={Contact} /> 9 </Fragment> 10 ); 11};
useLocation
会返回当前 URL
的 location
对象
1import { useLocation } from "react-router-dom"; 2 3const Contact = () => { 4 const { pathname } = useLocation(); 5 6 return ( 7 <Fragment> 8 <h1>Contact</h1> 9 <p>Current URL: {pathname}</p > 10 </Fragment> 11 ); 12};
这些路由传递参数主要分成了三种形式:
动态路由的概念指的是路由中的路径并不会固定
例如将path
在Route
匹配时写成/detail/:id
,那么 /detail/abc
、/detail/123
都可以匹配到该Route
1<NavLink to="/detail/abc123">详情</NavLink> 2 3<Switch> 4 ... 其他Route 5 <Route path="/detail/:id" component={Detail}/> 6 <Route component={NoMatch} /> 7</Switch>
获取参数方式如下:
1console.log(props.match.params.xxx)
在跳转的路径中添加了一些query参数;
1<NavLink to="/detail2?name=why&age=18">详情2</NavLink> 2 3<Switch> 4 <Route path="/detail2" component={Detail2}/> 5</Switch>
获取形式如下:
1console.log(props.location.search)
传递方式如下:
1<NavLink to={{ 2 pathname: "/detail2", 3 query: {name: "kobe", age: 30}, 4 state: {height: 1.98, address: "洛杉矶"}, 5 search: "?apikey=123" 6 }}> 7 详情2 8</NavLink>
获取参数的形式如下:
1console.log(props.location)
最近更新时间:2024-08-10