Angular 8에서 API 응답으로 엑셀 파일을 다운로드하는 방법 나는 응답으로 엑셀 문서를 반환하는 API를 가지고 있습니다.요청은 간단한 json 하나가 될 것입니다. 구글을 검색해서 파일을 다운로드할 수 있는 코드 기반을 찾아서 애플리케이션에 사용해봤지만, 오류가 발생하여 해결책을 찾을 수 없습니다.아래는 나의 코드 베이스입니다. 구성 요소.ts import rxjs/Rx; details = {id: 75,name: "some name"} this.nameService.getData(this.details).subscribe(response => { this.downloadFile(response); }) downloadFile(data: Response) { const blob = new Blo..