直播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完成导出功能,更多内容欢迎关注之后的文章
标签:vue,app,js,直播,file,download From: https://www.cnblogs.com/yunbaomengnan/p/17108709.html