axios回执成功后跳转页面
时间: 2023-10-14 17:23:02 浏览: 116
有返回结果的页面跳转
你可以在axios请求成功后,使用JavaScript中的window对象的location属性跳转到指定的页面。具体来说,可以在axios的then回调函数中使用window.location.href将页面跳转到指定的URL。例如:
```javascript
axios.post('/api/submitData', data)
.then(function (response) {
// 请求成功后跳转到指定页面
window.location.href = '/success.html';
})
.catch(function (error) {
console.log(error);
});
```
在上面的代码中,当axios请求成功后,会执行then回调函数,其中使用window.location.href将页面跳转到success.html页面。如果请求失败,则会执行catch回调函数,其中可以打印错误信息或做其他处理。
阅读全文