下载后台的二进制文件
axios({
method: "post",
url: "",
responseType: 'blob'
}).then((res) => {
if(0 < res.data.size) {
const link = document.createElement('a');
// fileType = application/vnd.ms-excel:表格
// fileType = application/zip:压缩文件
// fileType = image/jpeg:图片
const blob = new Blob([res.data], {type: fileType})
// 前台不设置名字则从后台获取
if(!fileName) {
下载后台的二进制文件最先出现在Python成神之路。
共有 0 条评论