记:将下载资源转为预览链接的代码 猪八宅百炼成仙 2023-06-08 46 阅读1分钟 import axios from 'axios' const response = await axios({ method: 'get', url: row.invoiceUrl, responseType: 'arraybuffer', }) const blob = new Blob([response.data], { type: 'application/pdf', }) url = window.URL.createObjectURL(blob) window.open(url)