我尝试延迟显示图像,直到所有图像都被上传(在浏览器中),但是我的代码继续执行(不等待上传)。
我正在使用promise和async-await。这是我的代码:
async _renderPhotos(data){
console.log("step6.1");
const photoSetDiv = document.createElement("div");
photoSetDiv.classList.add("photoSet");
// photoSetDiv.classList.add("unvisible");
photoSetDiv.id=`photoSet${this._step}`;
const urlArray=data.map( image => image.url);
await this._uploadAllImages(data, photoSetDiv);
console.log("step6.3");
this._container.appendChild(photoSetDiv);
}
_uploadAllImages(array, container){
var index=0;
//upload each of the images is separate promise
function checkImage(item){new Promise ((resolve, reject) =>{
//Creating <figure>, <img> and <div>.
const figure = document.createElement("figure");
figure.classList.add(item.site);
const title = document.createElement("div");
title.classList.add("titleImage");
title.innerHTML =`#${item.site}`;
figure.appendChild(title);
const img = new Image();
img.classList.add("image");
img.onload=() => {
console.log("step 6.2");
const classCSS=figureClass(index);
figure.classList.add(classCSS);
figure.appendChild(img);
container.appendChild(figure);
index ++;
resolve(item)}
img.src=item.url;
// Event on the image: after clicking on the image it is erlarged
img.onclick= () => {
modal.style.display = "block";
modalImg.src=item.url;
};
})};
return Promise.all(array.map(checkImage));
}
我要等待上载图像。当量: 按以下顺序显示在控制台中: 步骤6.1 步骤6.2(很多时候由于图像很多) 步骤6.3
答案 0 :(得分:1)
await
和Promise.all
/ race
的陷阱之一是,您可以在非承诺中使用它们,它们只会求值本身。所以这个:
await undefined;
await Promise.all([ undefined, undefined ]);
将直接运行,而不会发出任何警告(好吧,不完全是,它会等待两个提示音)。
这就是您的情况。您没有return
履行从checkImage
创建的承诺,因此基本上是在Promise.all
个数组上调用undefined
。