标签: reactjs mobx-react
我在APIClient.ts文件中给出了如下所示的重定向,它每秒重新加载页面不稳定。
if (res.status >= 400) { window.location.assign('/errorcode'); const serverError = new Error(error) as ICustomServerError; serverError.res = res; throw serverError; }