传参方式
HashRouter
- 通过在url中增加查询字符串。如
<Link to={{pathname: '/test', search: '?id=1'}}>
或者<Link to="/test?id=1">
(浏览器刷新后,数据不丢 。获取方式:this.props.location.search
) - 通过params,表现形式
<Link to="/test/:id">
(浏览器刷新后,数据不丢。获取方式:this.props.params
) - 通过query(query是一个自定义属性,你可以写成test,对应的取也用test即可)属性,
<Link to={{pathname: '/test', query: {id: 1}}}>
(浏览器刷新后,数据丢失, 获取方式:this.props.location.query
。 )
BrowserRouter
- 通过在url中增加查询字符串。如
<Link to={{pathname: '/test', search: '?id=1'}}>
或者<Link to="/test?id=1">
(浏览器刷新后,数据不丢。获取方式:this.props.location.search
) - 通过params,表现形式
<Link to="/test/:id">
(浏览器刷新后,数据不丢。 获取方式:this.props.params
) - 通过state,如
<Link to={{pathname: '/test', state: {id: 1}}}>
(浏览器刷新后,数据不丢 获取方式:this.props.location.state)
区别
HashRouter
- HashRouter使用URL(即window.location.hash)的哈希部分来保持UI与URL同步的。在地址栏显示样式会增加一个#前缀,如:**http://www.some.com/#/demo/**这种形式
- HashRouter的主要作用是兼容低版本浏览器
- 当hash变化时,并不会再一次产生资源请求
- 通过window.onhashchange监听变化
BrowserRouter
- 使用的是基于HTML5规范的window.history来管理路由状态,并且react-router中通过 pushState, popState,replaceState来同步ui的变化
- IE10+及以上浏览器支持HTML5的history api
- 生产中服务器需要配置,并且url变化会向服务器请求资源。比如用nginx作为web服务器时,需要配置以下规则来重定向到index.html(单页面入口)
location / { try_files $uri $uri/ /index.html; }
疑问
为什么history.state可以在刷新页面后依然保存数据
浏览器会将在history过程中传入的state对象序列化以后保留在本地,所以当重新载入这个页面的时候,可以拿到这个对象。