国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術(shù)文章
文章詳情頁

vue實(shí)現(xiàn)下載文件流完整前后端代碼

瀏覽:5日期:2022-10-25 18:42:32

使用Vue時(shí),我們前端如何處理后端返回的文件流

首先后端返回流,這里我把流的動(dòng)作拿出來了,我很多地方要用

/** * 下載單個(gè)文件 * * @param docId */ @GetMapping('/download/{docId}') public void download(@PathVariable('docId') String docId, HttpServletResponse response) { outWrite(response, docId); } /** * 輸出文件流 * @param response * @param docId */ private void outWrite(HttpServletResponse response, String docId) { ServletOutputStream out = null; try { out = response.getOutputStream(); // 禁止圖像緩存。 response.setHeader('Pragma', 'no-cache'); response.setHeader('Cache-Control', 'no-cache'); response.setDateHeader('Expires', 0); byte[] bytes = docService.downloadFileSingle(docId); if (bytes != null) { MagicMatch match = Magic.getMagicMatch(bytes); String mimeType = match.getMimeType(); response.setContentType(mimeType); out.write(bytes); } out.flush(); } catch (Exception e) { UnitedLogger.error(e); } finally { IOUtils.closeQuietly(out); } }

前端這里我引入了一個(gè)組件 js-file-download

npm install js-file-download --save

然后在Vue文件中添加進(jìn)來

import fileDownload from 'js-file-download'; // 文檔操作列對(duì)應(yīng)事件 async handleCommand(item, data) { switch (item.key) { case 'download': var res = await this.download(data); return fileDownload(res, data.name); ... default: } // 刷新當(dāng)前層級(jí)的列表 const folder = this.getLastFolderPath(); this.listClick(folder.folderId, folder.name); }, // 下載 async download(row) { if (this.isFolder(row.type)) { return FolderAPI.download(row.id); } else { return DocAPI.download(row.id); } },

docAPI js 注意需要設(shè)置responseType

/** * 下載單個(gè)文件 * @param {*} id */const download = (id) => { return request({ url: _DataAPI.download + id, method: 'GET', responseType: ’blob’ });};

這樣即可成功下載。

關(guān)于vue.js的學(xué)習(xí)教程,請大家點(diǎn)擊專題vue.js組件學(xué)習(xí)教程、Vue.js前端組件學(xué)習(xí)教程進(jìn)行學(xué)習(xí)。

以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Vue
相關(guān)文章:
主站蜘蛛池模板: 泽普县| 广河县| 普宁市| 毕节市| 鱼台县| 太康县| 项城市| 庆阳市| 乾安县| 永兴县| 柳江县| 普格县| 河南省| 毕节市| 乌审旗| 巴南区| 易门县| 海宁市| 皋兰县| 龙山县| 博白县| 平谷区| 南昌县| 邢台市| 当阳市| 南陵县| 大关县| 谷城县| 和顺县| 垦利县| 曲周县| 延安市| 临洮县| 婺源县| 平泉县| 汉阴县| 调兵山市| 泸西县| 梅州市| 正阳县| 赤峰市|