不要在循环中创建函数

在这种情况下,解决 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_;
}
};
}
75204 次浏览

将函数移出循环:

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 */