axiox下载文件
Posted shenjichenai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了axiox下载文件相关的知识,希望对你有一定的参考价值。
axios.request({ url: url, method: method, responseType: ‘blob‘ }) .then(response => { let data = response.data; let blob = new Blob([data], { type: "" }), objectURL = URL.createObjectURL(blob), $a = document.createElement("a"); blob.lastModifiedDate = new Date(); $a.setAttribute("href", objectURL); $a.setAttribute("download", this.table.currentRow.name); $a.click(); $a = null; })
以上是关于axiox下载文件的主要内容,如果未能解决你的问题,请参考以下文章