Я пытаюсь загрузить файл одним нажатием кнопки в Angular.Файл, который загружается, но имеет размер 0 КБ и не открывается.
Это код, который у меня есть в Angular и Spring MVC
Angular:
public downloadFile(fileName:string){
console.log("ready to download");
let param:any = {'messageId':this.loadedMessageService.messageId, 'attachmentName':fileName}
this.http.get(`https://fakeurl.com/abc/getFile`,{params:param,responseType:'blob'}).subscribe(
(data) => {
let b:Blob = new Blob([data])
//,{type: 'application/octet-stream',}
// const fileName :string= "RL.xlsx"
var url = window.URL.createObjectURL(b);
const a : HTMLAnchorElement = document.createElement('a') as HTMLAnchorElement;
// const a = document.createElement('a');
document.body.appendChild(a);
a.href = url;
a.download = fileName;
a.click();
document.body.removeChild(a);
URL.revokeObjectURL(url);
}
)
}
Spring MVC:
@GetMapping(value = "/getFile")
public @ResponseBody byte[] getFile() throws IOException {
try {
return messageAttachmentService.getFile(Integer.parseInt(request.getParameter("messageId")), request.getParameter("attachmentName"));
} catch (NumberFormatException e) {
StringWriter sw = new StringWriter();
e.printStackTrace(new PrintWriter(sw));
logger.error(sw.toString());
} catch (Exception e) {
StringWriter sw = new StringWriter();
e.printStackTrace(new PrintWriter(sw));
logger.error(sw.toString());
}
return null;
}
Прямо сейчас, когда я нажимаю кнопку, файл загружается, но имеет размер 0 КБ и не открывается.Я использовал type в качестве application / octet-stream раньше, поскольку загружаемый файл мог быть либо PDF, либо текстовым файлом, либо xls.Я также сослался на другие вопросы и попытался изменить тип ответа на arraybuffer.Это тоже не решило проблему.Что не так с моим кодом?