最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Axios follow redirect - Stack Overflow

programmeradmin3浏览0评论

I currently have some JavaScript code in my front-end React application that makes get/post requests to my Express back-end with axios. My current back-end implementation can sometimes redirect to a different page if the input is invalid (to the login page in the following example)

//back-end logic
if(valid data) response.json(someData);
if(invalid data) response.redirect("/login");

My axios request is the following:

axios.get("some.url/api").then(res => {
    //work with the res.someData if valid
}
.catch(err => console.log(err))

The issue I am facing is that if axios receives the redirect response it fetches that page but I want to redirect the window to the redirected URL.

Is it possible to make axios redirect the user window to the redirected page with axios when it receives response.redirect('url') from Express?

I currently have some JavaScript code in my front-end React application that makes get/post requests to my Express back-end with axios. My current back-end implementation can sometimes redirect to a different page if the input is invalid (to the login page in the following example)

//back-end logic
if(valid data) response.json(someData);
if(invalid data) response.redirect("/login");

My axios request is the following:

axios.get("some.url/api").then(res => {
    //work with the res.someData if valid
}
.catch(err => console.log(err))

The issue I am facing is that if axios receives the redirect response it fetches that page but I want to redirect the window to the redirected URL.

Is it possible to make axios redirect the user window to the redirected page with axios when it receives response.redirect('url') from Express?

Share Improve this question asked Dec 24, 2019 at 20:04 Jon DoeJon Doe 3891 gold badge4 silver badges14 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 5

No, it isn't.

The underlying API used by Axios in browsers follows redirects transparently.


Consider checking the content-type in the response and setting location to a new value if it is HTML rather than JSON.

发布评论

评论列表(0)

  1. 暂无评论