vue使用axios實(shí)現(xiàn)excel文件下載的功能
前端VUE頁(yè)面上的導(dǎo)出或者下載功能,一般是調(diào)用后端的一個(gè)接口,由接口生成excel,word這些文件的流信息,返回給vue,然后由vue去構(gòu)建下載的動(dòng)作,這邊整理了一下,封裝了一下,方便以后復(fù)用。
封裝一個(gè)download文件
使用年月日時(shí)分秒毫秒做為文件的名稱,下載為excel文件
/** * 下載文件 */export const downloadFile = (url,ext, params) => { let accessToken = getStore(’accessToken’); return axios({ method: ’get’, url: `${base}${url}`, params: params, headers: { ’accessToken’: accessToken }, responseType: ’blob’, //二進(jìn)制流 }).then(res => { // 處理返回的文件流 const content = res; const blob = new Blob([content], { type: ’application/vnd.ms-excel;charset=utf-8’ }); var date = new Date().getFullYear() + '' + (new Date().getMonth() + 1) + '' + new Date().getDate() + '' + new Date().getHours() + '' + new Date().getMinutes() + '' + new Date().getSeconds() + '' + new Date().getMilliseconds(); const fileName = date + '.' + ext; if ('download' in document.createElement('a')) { // 非IE下載 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 對(duì)象 document.body.removeChild(elink); } else { // IE10+下載 navigator.msSaveBlob(blob, fileName); } });};
為具體功能封裝一個(gè)組件,方便在前臺(tái)調(diào)用
// 評(píng)價(jià)導(dǎo)出export const getRecordExport= (params) => { return downloadFile(’/record/export’,'xlsx', params)}
vue頁(yè)面上調(diào)用它,實(shí)現(xiàn)導(dǎo)出
<script>import { getReportExport} from '@/api/index';import util from '@/libs/util.js';export default { name: 'task-manage', data() {}, methods: { exportExcel() { getReportExport(this.searchForm).then(res=>{}); } }}
截圖
到此這篇關(guān)于vue使用axios實(shí)現(xiàn)excel文件下載的功能的文章就介紹到這了,更多相關(guān)vue實(shí)現(xiàn)excel文件下載內(nèi)容請(qǐng)搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!
相關(guān)文章:
1. 使用PPT制作出圓柱體堆積樣式柱狀圖具體操作方法2. qq畫圖紅包勺子怎么畫?QQ畫圖紅包所有圖案畫法匯總3. 美團(tuán)app中退美團(tuán)劵具體操作步驟4. 抖音APP甩狗頭特效使用操作講解5. 拼多多中如何使用圖片搜索?拼多多圖片搜索使用方法攻略介紹!6. 微信歡樂(lè)斗地主殘局專家第68關(guān)通關(guān)方法 歡樂(lè)斗地主殘局專家第68關(guān)如何過(guò)7. 微信朋友圈關(guān)閉了別人看到是什么樣8. 微信怎么靜音播放視頻?9. 國(guó)家反詐中心人臉識(shí)別不了怎么辦 人臉識(shí)別老是不通過(guò)原因10. 天貓超市能拆單退貨嗎
