react路由参数获取
|
|
|
|
react路由Histories
- browserHistory(推荐使用)
- 缺点, 超链接在新标签打开报错,要从根路径开始
- 优点, 地址栏不会出现
#
, 组件加载不会渲染两次
- hashHistory
- 缺点, 组件加载会渲染两次
- 优点, 兼容老版本浏览器
- createMemoryHistory(服务器端渲染使用)
组件内外跳转
内跳转
12345componentDidMount(){setTimeout(()=>{this.context.router.push('/home');},3000);}外跳转
|
|