当前位置:   article > 正文

axios 取消请求

axios 取消请求

解决思路

在发送第二次请求的时候如果第一次请求还未返回,则取消第一次请求,以保证后发送的请求返回的数据不会被先发送的请求覆盖。

axios官方文档取消请求说明

方法一:
  1. const CancelToken = axios.CancelToken;
  2. const source = CancelToken.source();
  3. axios.get('/user/12345', {
  4. cancelToken: source.token
  5. }).catch(function(thrown) {
  6. if (axios.isCancel(thrown)) {
  7. console.log('Request canceled', thrown.message);
  8. } else {
  9. // handle error
  10. }
  11. });
  12. axios.post('/user/12345', {
  13. name: 'new name'
  14. }, {
  15. cancelToken: source.token
  16. })
  17. // cancel the request (the message parameter is optional)
  18. source.cancel('Operation canceled by the user.');
方法二:
  1. const CancelToken = axios.CancelToken;
  2. let cancel;
  3. axios.get('/user/12345', {
  4. cancelToken: new CancelToken(function executor(c) {
  5. // An executor function receives a cancel function as a parameter
  6. cancel = c;
  7. })
  8. });
  9. // cancel the request
  10. cancel();

可行方案

代码如下:

  1. /* 接口listApi.getList方法如下 */
  2. const CancelToken = axios.CancelToken
  3. let cancel
  4. getVideoList ({
  5. key
  6. }) {
  7. return axiosInstance.post('/video/list', {
  8. key
  9. }, {
  10. cancelToken: new CancelToken(function executor (c) {
  11. cancel = c
  12. })
  13. })
  14. },
  15. cancelRequest () {
  16. // 第一次执行videoService.cancelRequest()时还未发送getVideoList请求,会报错,添加如下判断
  17. if (typeof cancel === 'function') {
  18. // 取消请求
  19. cancel()
  20. }
  21. }
  22. /* 页面中获取列表的函数 */
  23. getList (query, cb) {
  24. // 取消之前的请求
  25. listApi.cancelRequest()
  26. // 发送请求
  27. listApi.getVideoList({key: 'value'}).then(resp => {
  28. // handle response data
  29. }).catch(err => {
  30. if (axios.isCancel(err)) {
  31. console.log('Request canceled!')
  32. } else {
  33. this.$message.error(err.message)
  34. }
  35. })
  36. }

此时重复发送多次`getVideoList请求时,会取消之前发送的请求保证返回数据为最后一次请求返回的数据。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/652666
推荐阅读
相关标签
  

闽ICP备14008679号