1,一般下載文件后端給個URL直接調(diào)用window.open(url)或者window.location.href=url即可。
2,特殊情況下后臺要返回字節(jié)流,前端用字節(jié)流生成文件
? ? 1)首先給請求設(shè)置??responseType: 'blob'
? ? 2)request(api).then((res) => {
? ? ? ????? const url = window.URL.createObjectURL(new Blob([res.data]))
? ? ? ? ????const link = document.createElement('a')
? ? ? ????? link.style.display = 'none'
? ? ? ? ????link.href = url
? ? ? ? ????link.setAttribute('download', file.fileName)
? ? ? ? ????document.body.appendChild(link)
? ? ? ? ????link.click()
? ? ? ? ????link.remove()
? ? ? })
? ?然后即可下載想帅。
? ?3)需要注意的是blob只兼容IE10及以上版本,使用時應(yīng)注意啡莉。
3港准,window.open 會打開新的標簽,用戶體驗不是很好咧欣,可以使用下面的方法浅缸。
const iframe = document.createElement('iframe');
? ? ? ? ? ? iframe.style.display = 'none'; // 防止影響頁面
? ? ? ? ? ? iframe.style.height = 0; // 防止影響頁面
? ? ? ? ? ? iframe.src = row.report_url;
? ? ? ? ? ? document.body.appendChild(iframe); // 這一行必須,iframe掛在到dom樹上才會發(fā)請求
? ? ? ? ? ? // 5分鐘之后刪除(onload方法對于下載鏈接不起作用该押,就先摳腳一下吧)
? ? ? ? ? ? setTimeout(() => {
? ? ? ? ? ? ? iframe.remove();
? ? ? ? ? ? }, 5 * 60 * 1000);
? ? ? ? ? }, 1000)
其實a標簽+download屬性疗杉,也可以實現(xiàn)單個文件下載,但是下載多個文件時蚕礼,只會下載一個烟具,其他的會被cancel掉,具體原因不清楚