const blob = new Blob([res['_body']],{type: "application/x-download"}); const objectUrl = URL.createObjectURL(blob); const a = document.createElement('a'); document.body.appendChild(a); a.setAttribute('style', 'display:none'); a.setAttribute('href', url); a.setAttribute('download', name); a.click(); URL.revokeObjectURL(url);