gpt4 book ai didi

javascript - 做多个 .fetch() promise

转载 作者:数据小太阳 更新时间:2023-10-29 05:07:19 25 4
gpt4 key购买 nike

我想获取多个图像并将它们变成 blob。我是 promises 的新手,我试过了,但我无法通过。

下面是单个 .fetch() promise

fetch('http://cors.io/?u=http://alistapart.com/d/_made/d/ALA350_appcache_300_960_472_81.jpg')
.then(function(response) {
return response.blob();
})
.then(function(myBlob) {
var objectURL = URL.createObjectURL(myBlob);
document.getElementById('myImage').src = objectURL;
});

现在有多个 .fetch() promise(不起作用)

var promises = [];

for (var i = values.length - 1; i >= 0; i--) {
promises.push(fetch(values[i]));
}

Promise
.all(promises)
.then(function(response) {
for (var i = response.length - 1; i >= 0; i--) {
return response[i].blob();
}
})
.then(function(blob) {
console.log(blob.length); //undefined !!!
for (var i = blob.length - 1; i >= 0; i--) {
console.log(blob[i]);
lcl_images[i].value = URL.createObjectURL(blob[i]);
document.getElementById(lcl_images[i].id).src = objectURL;
}
})
.catch(function(error) {
console.log(error);
});

最佳答案

一般规则是,promise 链的成功路径中完全同步的中间步骤可以与下一步合并,从而允许从链中省略一个 then()

该声明实际上有一个附带条件,涉及中间捕获,但它足以回答这个问题。

因此,如果 .blob() 方法是真正同步的(它返回一个值),则只需要一个 .then(),而不是两个。

这里有两种方法,都利用了 Array.prototype.map() ,两者都应该有效(尽管它们在错误情况下会有所不同):

<强>1。简单的 .map(),在 Promise.all()

中有详细信息
var promises = values.reverse().map(fetch); // you may need .reverse(), maybe not. I'm not 100% sure.

return Promise.all(promises).then(function(responses) {
responses.forEach(function(r, i) {
var imageObj = lcl_images[i],
element = document.getElementById(imageObj.id);
imageObj.value = URL.createObjectURL(r.blob());
if(element) { //safety
element.src = imageObj.value;
}
});
return responses; // here, return whatever you want to be made available to the caller.
}).catch(function(error) {
console.log(error);
});

如果你愿意,你可以这样写:

return Promise.all(values.reverse().map(fetch)).then(function(responses) {
// ...
});

<强>2。 .map() 中的详细信息遵循简单的 Promise.all()

var promises = values.reverse().map(function(val, i) {
return fetch(val).then(function(result) {
var imageObj = lcl_images[i],
element = document.getElementById(imageObj.id);
imageObj.value = URL.createObjectURL(result.blob());
if(element) { //safety
element.src = imageObj.value;
}
return result; // here, return whatever you want to be made available to the caller.
});
});

return Promise.all(promises).catch(function(error) { // return a promise to the caller
console.log(error);
});

注意事项:

  • (1) 如果任何一个 fetch() 失败,将完全失败。
  • (2) 将为所有成功 提取执行所有imageObj.value ...element.src = ... 内容即使一个或多个 fetch()... 失败。任何一次失败都会导致 Promise.all(promises) 返回一个被拒绝的 promise 。
  • (1) 或 (2) 可能更合适,具体取决于您的需要。
  • 还有其他错误处理可能性。
  • 如果这两种方法都不起作用,那么最合理的解释是 .blob() 方法返回一个 promise ,而不是一个值。

关于javascript - 做多个 .fetch() promise ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38016471/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com