直播app開發搭建,vue使用js-file-download完成匯出功能

zhibo系統開發發表於2023-02-10

直播app開發搭建,vue使用js-file-download完成匯出功能

1.安裝js-file-download

npm install js-file-download

2.引入對應的功能模組

import fileDownLoad from 'js-file-download'
import Axios from 'axios'//ajax請求
import store from '@/store'//設定token

3.程式碼段

exportData(){
        var _this = this
        Axios({
          url:'ajax url'
          method: 'post',
          headers: {
           'Authorization': token
          },
          data:{
            licenseNo:_this.searchForm.licenseNo,
          },
          responseType: 'blob',
          }).then(res => {
             fileDownload(res.data, new Date().getTime()+ '.xlsx');
          })
      }

 以上就是 直播app開發搭建,vue使用js-file-download完成匯出功能,更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2934740/,如需轉載,請註明出處,否則將追究法律責任。

相關文章