当前位置:   article > 正文

vue项目导出excel ,文件过大导致请求超时的处理方法_vue下载大文件网络超时

vue下载大文件网络超时

一、因为文件过大,请求时间较长,就会产生请求超时的情况,处理方式是可以分为三个接口,接口1用来获取id值,接口2利用id值发起请求,询问是否准备好下载,如果没准备好,则没隔一秒再次发起请求询问是否准备好,直到准备好为止,清除定时器,使用接口3发起下载

  1. function pollingFunctions(params) {
  2. let queryTimer;
  3. if (queryTimer) {
  4. clearInterval(queryTimer);
  5. }
  6. // 接口1-获取唯一标识code
  7. exportGetId(params).then((res) => {
  8. if (res.uuid) {
  9. // 接口2-查询是否完成
  10. queryTimer = setInterval(function () {
  11. exportAsk({ uuid: res.uuid }).then((result) => {
  12. if (result) {
  13. // 成功
  14. if (result.current == result.total) {
  15. clearInterval(queryTimer);
  16. function peCallback(pe) {
  17. // 下载回调
  18. defaultPercent.value = Math.round((pe.event.loaded / pe.event.total) * 100);
  19. if (pe.event.loaded === pe.event.total) {
  20. showProgress.value = false;
  21. message.success({ content: '下载完成', key, duration: 3 });
  22. }
  23. }
  24. try {
  25. exportDownload({ uuid: res.uuid }, peCallback).then((res) => {
  26. // 接口3
  27. const fileName = '电子台账记录.xlsx';
  28. let bold = new Blob([res.data]);
  29. const newUrl = window.URL.createObjectURL(bold);
  30. const link = document.createElement('a');
  31. link.href = newUrl;
  32. link.setAttribute('download', fileName);
  33. document.body.appendChild(link);
  34. link.click();
  35. link.parentNode?.removeChild(link);
  36. });
  37. } catch (error) {
  38. message.warn('下载失败,请重试');
  39. }
  40. }
  41. } else {
  42. // 失败
  43. clearInterval(queryTimer);
  44. message.warn('下载失败,请重试');
  45. }
  46. });
  47. }, 1000);
  48. }
  49. });
  50. }
  1. // 导出1-获取查询id
  2. export const exportGetId = (params?: Object) =>
  3. defHttp.get({ url: '', params });
  4. // 导出2-利用查询id发起请求,询问是否可以下载,不可以就等一秒在发起请求询问是否准备好
  5. export const exportAsk = (params?: Object) =>
  6. defHttp.get({ url: '', params });
  7. // 导出3-准备好之后再发起下载请求
  8. export const exportDownload = (params?: Object, peCallback?: Function) => {
  9. return new Promise((resolve, reject) => {
  10. axios({
  11. method: 'get',
  12. url: 'd',
  13. headers: {},
  14. responseType: 'blob',
  15. params,
  16. onDownloadProgress: (pe) => {
  17. peCallback ? peCallback(pe) : '';
  18. },
  19. })
  20. .then((res) => {
  21. resolve(res);
  22. })
  23. .catch((err) => {
  24. console.warn(err);
  25. });
  26. });
  27. };

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

闽ICP备14008679号