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); });
フェッチ 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 中国語 Web サイトの他の関連記事を参照してください。