Untuk membaca gambar dari Internet, saya perlu tahu masa yang diperlukan Contohnya, jika melebihi 3 saat, saya akan berhenti membaca gambar itu.
走同样的路,发现不同的人生
Anda boleh menggunakan janji
const p = Promise.race([ request('/resource-that-may-take-a-while'),//下载图片 改成真正的下载 new Promise(function (resolve, reject) { setTimeout(() => reject(new Error('request timeout')), 3000) }) ]); p.then(response => console.log(response)); p.catch(error => console.log(error));
Atau gunakan pakej async
async.race([ function(callback) { request('/resource-that-may-take-a-while',callback)//下载图片 改成真正的下载 }, function(callback) { setTimeout(function() { callback(null, 'two'); }, 3000); } ], // main callback function(err, result) { });
Anda boleh menggunakan janji
Atau gunakan pakej async