74

在这种情况下解决 jslint 错误的正确方法是什么?我正在向使用它的对象添加一个 getter 函数。如果不在循环内创建函数,我不知道该怎么做。

for (var i = 0; i<processorList.length; ++i) {
   result[i] = {
       processor_: timestampsToDateTime(processorList[i]),
       name_: processorList[i].processorName,
       getLabel: function() { // TODO solve function in loop.
            return this.name_;
       }
   };
}
4

1 回答 1

112

将函数移出循环:

function dummy() {
    return this.name_;
}
// Or: var dummy = function() {return this.name;};
for (var i = 0; i<processorList.length; ++i) {
   result[i] = {
       processor_: timestampsToDateTime(processorList[i]),
       name_: processorList[i].processorName,
       getLabel: dummy
   };
}

...或者只是使用文件顶部的loopfunc选项忽略该消息:

/*jshint loopfunc:true */
于 2012-04-25T17:00:09.580 回答