不要在循环内创建函数。 - jslint 错误

发布于 2024-11-26 15:38:38 字数 192 浏览 1 评论 0原文

我收到此 jslint 错误

不要在循环内创建函数。

我无法更改导致此问题的 javascript - 但是由于修改它的限制,我无法更改。

因此,我想关闭此验证以检查特定 javascript 文件中是否存在此错误。

对于这个js错误可以这样做吗?

I am getting this jslint error

Don't make functions within a loop.

I can't change the javascript that is causing this issue - however I cant, due to restrictions from modifying it.

So, I want to turn this validation to check for this error off in a particular javascript file.

Is this possible to do for this js error?

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

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

发布评论

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

评论(1

寒尘 2024-12-03 15:38:38

不,验证检查不是可选的。

可能的解决方法:

// simple closure scoping i to the function.
for(var i = 0; i < 10; i++) {
    (function (index) {
         console.log(index);
     }(i));
}
// this works, however it's difficult to site read and not a blast to debug

解决方案:

// same exact output
function logger(index) {
    console.log(index);
}

// same output. Minus declaring all vars at the
// top of the function and console this passes jslint.
for(var i = 0; i < 10; i++) {
    logger(i);
}

No, that valildation check is not optional.

A possible workaround:

// simple closure scoping i to the function.
for(var i = 0; i < 10; i++) {
    (function (index) {
         console.log(index);
     }(i));
}
// this works, however it's difficult to site read and not a blast to debug

A solution:

// same exact output
function logger(index) {
    console.log(index);
}

// same output. Minus declaring all vars at the
// top of the function and console this passes jslint.
for(var i = 0; i < 10; i++) {
    logger(i);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文