处理文件失败,将blob类型转换为json


发起请求后处理blob类型返回值成json,处理报错信息
.then((res) => {
      //  console.log(res);
        if (res.type === 'application/json') {
          const reader = new FileReader();
          reader.readAsText(res, 'utf-8');
          reader.onload = () => {
           //处理报错信息 JSON.parse(reader.result)拿到报错信息
          };
        } else {
          const binaryData = [];
          binaryData.push(res);
          const url = window.URL.createObjectURL(new Blob(binaryData, { type: 'application/pdf' }));
          const iframe = window.open(url, title);
          setTimeout(() => {
            iframe.document.title = title;
            iframe.print();
          }, 500);
        }
      })


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM