我正在从Get API获得一滴斑点此处显示的响应得到响应后创建文件的逻辑。
const url = URL.createObjectURL(new Blob([result], { type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' }))
const link = document.createElement('a');
link.href = url;
link.innerText = 'Open the array URL';
link.setAttribute('download', 'myExcel.xlsx');
link.click();
其创建损坏的Excel文件。