基本上,每次刷新页面时,for循环都有很小的可能从1变为0。我不知道为什么会发生这种情况,但它影响了我的图像彼此叠加的方式。
我尝试使用foreach循环,但它仍然给我同样的结果。
下面是for循环的代码:
for (let index = 0; index < Img.length; index++) {
const element = Img[index];
fs.readFile(__dirname + '/assets/textures' + element, function(err, data) {
console.log("Index: " + index);
});
};
数组是非常直接的。
let Img = ["/red.png", "/face.png"];
我在服务器上做这些。NodeJS
1条答案
按热度按时间unftdfkk1#
试试这个