码迷,mamicode.com
首页 > 移动开发 > 详细

axios导出 excel

时间:2018-12-20 18:41:44      阅读:289      评论:0      收藏:0      [点我收藏+]

标签:get   element   obj   信息   div   ie10   exce   body   down   

this.axios({
  methods: ‘get‘,
  url: url,
  responseType: ‘blob‘
}).then(res => {
  const blob = new Blob([res])
  const fileName = ‘导出信息.xls‘
  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.clink()
    URL.revokeObjectURL(elink.href) // 释放URL 对象
    document.body.removeChild(elink)
  } else { // IE10+下载
    navigator.msSaveBlob(blob, fileName)
  }
})

 

axios导出 excel

标签:get   element   obj   信息   div   ie10   exce   body   down   

原文地址:https://www.cnblogs.com/ToBeBest/p/10150571.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!