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

2024年11月15日 20:56
有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]); 这里报错
}