axios文档流下载到excel

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)