美文网首页
axios文档流下载到excel

axios文档流下载到excel

作者: dream_Q | 来源:发表于2018-06-11 21:22 被阅读0次

    this.$http({

        method:post’,

        url:’’,

        data:{},

        responseType:arraybuffer

    })

    .then((res) => {

        const fileName =‘order’;

        const blob = newBlob([data],{ type: 'application/vnd.ms-excel' });

        const link =document.createElement('a');

        link.href =window.URL.createObjectURL(blob);

        link.download = fileName+’.xls’;

        link.click();

    })

    blob的文件格式type为接口请求成功之后的response headers里的content-type

    相关文章

      网友评论

          本文标题:axios文档流下载到excel

          本文链接:https://www.haomeiwen.com/subject/packeftx.html