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下载文件的主要内容,如果未能解决你的问题,请参考以下文章

使用 libtorrent 下载特定片段

根据图片的url地址下载图片到本地保存代码片段

片段中的Firebase数据不是持久的,会重新下载

Xamarin Android 片段库

我无法从 firebase 获取下载网址()。请任何人帮助这是我的代码和错误。 (我正在使用片段)[重复]

16个必备的JavaScript代码片段