绘制小白色矩形但不绘制图像为什么会这样以及如何修复它。
var imageReady = false;
img = new Image();
img.src = 'player.png';
img.onload = loaded();
function loaded() {
imageReady = true;
redraw();
}
function redraw() {
//ctx.fillStyle = "blue";
//ctx.fillRect(0, 0, 500, 500);
if (imageReady) {
ctx.fillStyle = "white";
ctx.fillRect(10,10,10,10);
ctx.drawImage(img, 5, 5);
}
}