javascript 提示 Uncaught TypeError: Cannot read property ✀0✀ of undefined

2024-11-15 20:56:55
推荐回答(1个)
回答1:

for(var i=0;i<=bullets.length;i++){
this.ctx.drawImage(bullet,bullets[i][0]+55,bullets[i][1]); 这里报错
}变为
for(var i=0;i this.ctx.drawImage(bullet,bullets[i][0]+55,bullets[i][1]); 这里报错
}