我使用Promise.all时遇到问题。如果我理解正确 - someArrayUpdate1 异步解析几个对数组( someArray1 )的承诺 - 所以当Promise.all(someArray1)命中时,更快或更晚它拥有所有数据。 someArrayUpdate2也会发生同样的事情 - 所以它立即开始 构建它的数据(someArray2)。
我认为.then()会像制动器一样工作,所以Promise.all(someArray2)将开始构建它承诺数组 AFTER Promise.all(someArray1)并感谢 TEST1(mainArray)对象状态将变为ON。
现在的问题是TEST1(mainArray)对象状态为OFF。我不知道如何改变它。有什么想法吗?
<doctype>
<html>
<head>
<title>TEST</title>
</head>
<body>
<img src="img1.jpg" />
<img src="img2.jpg" />
<img src="img3.jpg" />
<script>
// ARRAYS and FUNCTIONS:
var mainArray = [{
TEST1 : {
status : ''
},
TEST2 : {
status : ''
},
TEST3 : {
status : ''
}
}];
var someArray1 = []; // for imgs
var someArray2 = []; // for objects
function someArray1Update(imgSrc, imgCounter) {
return new Promise(function (resolve, reject) {
setTimeout(function() {// - for marking asynchronous data flow
// this is where the problem is (lets assume that this code must be placed here) - we update second array here for Promise.all(someArray2) but nothing happen... status is OFF
someArray2.push(someArray2Update('TEST1', 'on'));
return resolve({counter : imgCounter, url : imgSrc});
}, 1000);
});
}
function someArray2Update(object, status) {
return new Promise(function(resolve, reject) {
return resolve({
[object] : {
status : status,
}
});
});
}
// CODE:
someArray2.push(someArray2Update('TEST2', 'on')); // working fine
var imgs = document.images || document.getElementsByTagName('img');
var imgsLength = imgs.length;
var imgSrc = '';
var imgsInfo = '';
if (imgsLength !== 0) {
for (var i = 0; i < imgsLength; i++) {
imgSrc = imgs[i].getAttribute('src');
var imgCounter = i + 1;
someArray1.push(someArray1Update(imgSrc, imgCounter));
console.log('Image ' + [i + 1] + ' - ' + imgSrc);
imgsInfo += 'Image ' + [i + 1] + ' - ' + imgSrc + '<br />';
}
}
else;
someArray2.push(someArray2Update('TEST3', 'on')); // working fine
Promise.all(someArray1).then(function(all) {
console.log('\n');
all.forEach(function(i) {
console.log('someArray1 - ok');
});
console.log('\n');
}).then(Promise.all(someArray2).then(function(array) {
array.forEach(function(i) {
mainArray[0] = Object.assign(mainArray[0], i);
});
console.log('\n=========================================================');
console.log(mainArray);
console.log('=========================================================\n');
}));
</script>
</body>
</html>
答案 0 :(得分:1)
).then(Promise.all(someArray2).then(function(array) {
array.forEach(function(i) {
mainArray[0] = Object.assign(mainArray[0], i);
});
console.log('\n=========================================================');
console.log(mainArray);
console.log('=========================================================\n');
}));
这应该是这样的:
).then(*function()*{Promise.all(someArray2).then(function(array) {
array.forEach(function(i) {
mainArray[0] = Object.assign(mainArray[0], i);
});
}console.log('\n=========================================================');
console.log(mainArray);
console.log('=========================================================\n');
}));
感谢@Bergi指出这一点。