gpt4 book ai didi

Javascript函数存储在变量错误中

转载 作者:行者123 更新时间:2023-12-03 04:20:39 24 4
gpt4 key购买 nike

有什么原因会导致我收到错误

未捕获类型错误:inter 不是函数在 movingPiece (script.js:270)在键盘移动(script.js:146)

在此代码中:

var inter = setInterval(function() {
draw();
b_ctx.globalCompositeOperation = "copy";
b_ctx.fillStyle = "purple";
b_ctx.beginPath();
b_ctx.arc(xcoord, y, 45, 0, Math.PI * 2, true);
b_ctx.fill();
y += 1;
if (y > endY) clearInterval(inter)
}, 25);

inter();

最佳答案

inter 并不是真正的函数。所以你不能调用它。每 25 毫秒自动调用一次。

您收到错误是因为您正在调用它。它是自动调用的。您不需要调用它或调用它。

关于Javascript函数存储在变量错误中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43963069/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com