具有在运行时更改的参数的超时函数

发布于 2024-12-03 08:56:57 字数 584 浏览 3 评论 0原文

我正在尝试以下操作:

var timeout = 300;
var colors = ['aqua', 'limegreen']
for (var i=0; i < 4; ++i) {
    console.log(colors[i % colors.length]);
    setTimeout(function() { changeColor(colors[i % colors.length]) }, i * timeout);
}

function changeColor(color) {
    console.log(color);
}

这不起作用,因为 changeColor 的参数在执行时已解析...这意味着颜色将始终相同。在我的 chrome 中,超时后也无法传递参数:

var color = colors[i % colors.length];
setTimeout(function() { changeColor() }, i * timeout, color);

好吧,我现在有一个可以工作的时间间隔的解决方法......但是因为我在这里学习......这是如何通过暂停?

I'm trying the following:

var timeout = 300;
var colors = ['aqua', 'limegreen']
for (var i=0; i < 4; ++i) {
    console.log(colors[i % colors.length]);
    setTimeout(function() { changeColor(colors[i % colors.length]) }, i * timeout);
}

function changeColor(color) {
    console.log(color);
}

This doesn't work because the parameter for changeColor is resolved when it get's executed...this means, the color will always be the same. In my chrome it also didn't work to pass the params after the timeout:

var color = colors[i % colors.length];
setTimeout(function() { changeColor() }, i * timeout, color);

Well, I now have a workaround with an interval which works...but since I'm here to learn....how is this done with a timeout?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

吻风 2024-12-10 08:56:57

当for循环结束时,调用changeColor的匿名函数将被执行。所以它将等于它获得的最后一个值。为了防止捕获闭包中所需的值,请使用匿名函数包装对 setTimeout 的调用:

for (var i=0; i < 4; ++i) {
    console.log(colors[i % colors.length]);
    (function(i){
        setTimeout(function() { changeColor(colors[i % colors.length]) }, i * timeout);
    })(i);    
}

The anonymous function which calls changeColor will be executed when for cycle will be ended already. So it will equal to the last value it gets. To prevent this capture the value you need in closure by wrapping the call to setTimeout with anonymous function:

for (var i=0; i < 4; ++i) {
    console.log(colors[i % colors.length]);
    (function(i){
        setTimeout(function() { changeColor(colors[i % colors.length]) }, i * timeout);
    })(i);    
}
梦在夏天 2024-12-10 08:56:57

你遇到了关闭问题;对 i 值的引用已被捕获,因此所有函数都包含相同的值。您需要执行以下操作来捕获调用时的 i 引用:

 for(var i = 0; i < 4; i++)
 {
      (function(index)
      {
          setTimeout(function()
          {
              changeColor(colors[index & colors.length]);
          }, index * timeout);
      })(i)
 }

You are suffering from a closure problem; the reference to the value of i has been captured and so all the functions contain the same value. You need to do something like this to capture the reference of i at the moment of invoking:

 for(var i = 0; i < 4; i++)
 {
      (function(index)
      {
          setTimeout(function()
          {
              changeColor(colors[index & colors.length]);
          }, index * timeout);
      })(i)
 }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文