react-router-dom,react-router 在非组件内进行路由跳转
前言:在写项目时需要在非组件的js文件里 进行路由跳转,比如axios里请求响应拦截后做路由跳转, 但是又不能获取到this.props.history, 那怎么才能获取到history对象呢?
1.创建一个 utils/history.js
import { createBrowserHistory } from 'history';
export default createBrowserHistory();
2.主入口index.js
import ReactDOM from 're.
原创
2020-10-15 15:13:41 ·
2550 阅读 ·
5 评论