Apabila memuat turun fail menggunakan API window.fetch(), anda perlu merantai kemudian( ) blok ke panggilan fetch() untuk mengendalikan respons. Begini cara anda boleh melakukannya:
<code class="javascript">function downloadFile(token, fileId) { let url = `https://www.googleapis.com/drive/v2/files/${fileId}?alt=media`; return fetch(url, { method: 'GET', headers: { 'Authorization': token } }).then(res => { // Handle the response here }); }</code>
Dalam blok then(), anda biasanya boleh menggunakan langkah berikut untuk memuat turun fail:
Berikut ialah alternatif yang lebih pendek dan lebih cekap yang hanya menggunakan API pengambilan:
<code class="javascript">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); });</code>
Atas ialah kandungan terperinci Bagaimana untuk Muat Turun Fail Menggunakan window.fetch()?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!