const blob = new Blob([pdfBuffer], { type: 'application/pdf' }); const a = document.createElement('a'); a.href = window.URL.createObjectURL(blob); ...
確定! 回上一頁