嘗試使用window.fetch() 下載檔案時,then 區塊中要執行的適當步驟是如下所示:
.then((response) => { // Convert the response to a blob. return response.blob(); }) .then((blob) => { // Create a URL for the downloaded file. const fileURL = URL.createObjectURL(blob); // Navigate to the file URL to start downloading the file. window.location.assign(fileURL); });
要獲得僅使用fetch API 的更簡潔、高效的解決方案,請考慮以下程式碼:
const url ='http://sample.example.file.doc' const authHeader ="Bearer 6Q************" const options = { headers: { Authorization: authHeader } }; fetch(url, options) .then( res => res.blob() ) .then( blob => { var file = window.URL.createObjectURL(blob); window.location.assign(file); });
以上是如何使用 Window.fetch() 下載檔案並處理授權?的詳細內容。更多資訊請關注PHP中文網其他相關文章!