本文記錄文件下載處理文件流? 之前不太了解 再次記錄 以備后續(xù)查看
Blob 接受文件流??
利用a標簽的下載功能? 創(chuàng)建a標簽
設置a標簽的download屬性
設置a標簽的href屬性
把a標簽拼接到頁面上
然后 模擬a標簽的click操作
直接把下面代碼粘貼到請求返回的回調(diào)函數(shù)中就可以了
? ? ? ? const?blob?=?new?Blob([res]);?
????????const?fileName?=?"模板.txt";?//下載文件名稱
????????const?elink?=?document.createElement("a");
????????elink.download?=?fileName;
????????elink.style.display?=?"none";
????????elink.href?=?URL.createObjectURL(blob);
????????document.body.appendChild(elink);
????????elink.click();
????????URL.revokeObjectURL(elink.href);?//?釋放URL?對象