Javascript 代码仅在调试时运行

Posted

技术标签:

【中文标题】Javascript 代码仅在调试时运行【英文标题】:Javascript code runs only when debugging 【发布时间】:2016-09-27 04:59:02 【问题描述】:

我正在使用 Twitch api 检查所选频道是在线还是离线。有一个奇怪的错误。代码仅在开发工具中调试脚本时有效。我错过了什么吗?

$(document).ready(function() 
        var channels = ["OgamingSC2","sheevergaming", "ESL_SC2", "cretetion", "freecodecamp", "storbeck", "habathcx", "RobotCaleb", "noobs2ninjas"];
        for (var i = 0; i < channels.length; i++) 
            $.getJSON('https://api.twitch.tv/kraken/streams/' + channels[i] + '?callback=?', function(data) 
                if (data.stream) 
                    $('.wrapper li').eq(i).css('background-color', "blue");
                 else 
                    $('.wrapper li').eq(i).css('background-color', "red");
                

            );
        ;

    )

这里是完整代码http://codepen.io/nikasv/pen/GqRMXq

【问题讨论】:

【参考方案1】:

$.getJSON() 是异步的。因此,它的完成回调会在一段时间后调用。您的 for 循环运行到末尾,然后在调用回调时,i 设置为 for 循环的末尾。

调试可能会改变时间。

您可以通过将循环计数器嵌入到 IIFE 中来解决问题,这样它将在 for 循环的每次迭代中被唯一地捕获,如下所示:

$(document).ready(function() 
      var channels = ["OgamingSC2","sheevergaming", "ESL_SC2", "cretetion", "freecodecamp", "storbeck", "habathcx", "RobotCaleb", "noobs2ninjas"];
      for (var i = 0; i < channels.length; i++) 
          (function(index) 
            $.getJSON('https://api.twitch.tv/kraken/streams/' + channels[index] + '?callback=?', function(data) 
                if (data.stream) 
                    $('.wrapper li').eq(index).css('background-color', "blue");
                 else 
                    $('.wrapper li').eq(index).css('background-color', "red");
                
            );
          )(i);
      
 );

或者,您可以使用 .forEach() 为您创建内部函数:

$(document).ready(function() 
      var channels = ["OgamingSC2","sheevergaming", "ESL_SC2", "cretetion", "freecodecamp", "storbeck", "habathcx", "RobotCaleb", "noobs2ninjas"];
      channels.forEach(function(item, index) 
            $.getJSON('https://api.twitch.tv/kraken/streams/' + item + '?callback=?', function(data) 
                if (data.stream) 
                    $('.wrapper li').eq(index).css('background-color', "blue");
                 else 
                    $('.wrapper li').eq(index).css('background-color', "red");
                
            );
       );
 );

【讨论】:

一个不那么尴尬的解决方案是只使用channels.forEach(function(index) ... ); @PatrickRoberts - 好主意。我将该选项添加到我的答案中。【参考方案2】:

您没有在页面添加 jquery(设置 - javascript - 快速添加 - jquery - 关闭)

之后 - 一切正常 (_http://codepen.io/anon/pen/xOxXQN)

【讨论】:

【参考方案3】:

我认为您忘记在代码中包含 jquery

如果你打开控制台,它会说 $ 没有定义。添加jquery,它就可以正常工作了。

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js"></script>

【讨论】:

以上是关于Javascript 代码仅在调试时运行的主要内容,如果未能解决你的问题,请参考以下文章

仅在调试代码时出现进程中的 hsqldb 错误

Scala:代码仅在调试时运行(#ifdef 等效?)

编译器指令 - 建议 - 仅在调试模式下运行代码

Visual Studio c++ 仅在调试模式下 LNK 1104 错误

导入 PySide2 时 DLL 加载失败,仅在调试时

SKAction 仅在睡眠后或运行调试器时运行