参考前端常用上传/下载PDF预览以及下载 function dowanloadpdf() { axios({ method: 'get', url: 'https://vkceyugu.cdn.bspapp.com/VKCEYUGU-8e76dff9-ce38-4577-9e5c-398943705060/a5b050b8-3fa1-4436-b231-7b40725de731.pdf', responseType: 'blob', }).then(function (response) { const link = document.createElement('a') let blob = new Blob([response.data], { type: response.data.type }) let url = URL.createObjectURL(blob) link.href = url link.download = '前端工程师必备技能.pdf' link.click() }) }
参考