作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 axios 拦截器,当用户被强制注销(由于 token 过期)时,我想返回我的主页。
我不知道如何将 react 路由器传递给它。我正在使用 mobx,但不确定这是否能帮助我解决这个问题。
export const axiosInstance = axios.create({
baseURL: 'https://localhost:44391/api',
timeout: 5000,
contentType: "application/json",
Authorization: getAuthToken()
})
axiosInstance.interceptors.response.use(function (response) {
return response;
}, function (error) {
const originalRequest = error.config;
if(error.code != "ECONNABORTED" && error.response.status === 401 && !originalRequest._retry){
originalRequest._retry = true;
return axiosInstance.post("/tokens/auth",{
"refreshToken": getRefreshToken(),
"grantType": "refresh_token"
}).then(response => {
localStorage.authentication = JSON.stringify(response.data);
updateAuthInstant();
return axiosInstance(originalRequest)
});
}
return Promise.reject(error);
});
最佳答案
您应该添加 history npm 包。这样您就可以创建浏览器历史记录并在应用程序的其他地方使用它。
例如:
// routing.js
import createHistory from 'history/createBrowserHistory';
export const history = createHistory();
在包含路由的组件中。
import { Route, Router } from 'react-router-dom';
import { history } from './routing.js';
import ComponentA from './ComponentA';
import ComponentB from './ComponentB';
const Routes = () => (
<Router history={history}>
<div>
<Route exact path='/route1' component={ComponentA} />
<Route exact path='/route2' component={ComponentB} />
</div>
</Router>
);
在您想要控制路由的其他文件中:
import { history } from './routing.js';
function changeRoute() {
// things happening here..
history.push('/route2');
}
调用 changeRoute()
时,路径会更新为 /route2
,并且 ComponentB
将被渲染。
关于reactjs - React Router + Axios 拦截器。如何进行重定向?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51388553/
我是一名优秀的程序员,十分优秀!