1

我有以下似乎正确的代码片段,但 jslint 不喜欢它。

var VALID_TYPE = {
    "stringType" : "string",
    "arrayType" : "array",
    "objectType" : "object"
},
    DEFAULT_FIRST = 1, DEFAULT_LAST = 1, PRIMITIVE_TYPE = {
    "stringType" : "string",
    "arrayType" : "array",
    "objectType" : "object",
    "undefinedType" : "undefined",
    "booleanType" : "boolean",
    "numberType" : "number"
};
VALID_TYPE.toString = function () {
    var types = [], currentType;
    for (currentType in this) {
        if (typeof this[currentType] === PRIMITIVE_TYPE.stringType) {
            types.push(this[currentType]);
        }
    }
    var outputString = types.join(', ');
    return outputString;
};

错误的行是这个,在“。”: if (typeof this[currentType] === PRIMITIVE_TYPE.stringType) {

错误的确切文本是:应为字符串,但看到的是 '.'。

toString() 按预期执行。除了将表达式的右侧放入另一个变量之外,我看不到应该更改什么以避免错误。jslinterrors.com 上尚未描述该错误。

4

2 回答 2

0

toString() 按预期执行。

该代码是完全有效的,所以是的。

请记住,jsLint 不是在寻找错误;它正在寻找它认为不好的做法。

但这些事情并不总是在每种情况下都是绝对错误的。通常它有一个合法的用例,如果您遇到其中一种情况,那么您仍然会收到错误,但只需忽略它。

lint 错误应该被视为一种指导,而不是严格遵守并导致构建失败的东西。

您可能还想考虑使用 jsHint 而不是 jsLint。jsHint 基于 jsLint,但对于它所抱怨的内容往往更加务实。

希望有帮助。

于 2013-08-30T07:01:27.537 回答
0

正如@SLaks 在评论中所说,JSLint 会在遇到比较运算符时发出警告,其中一个操作数是typeof表达式而另一个操作数不是字符串文字。

这是执行此检查的代码的精简版本:

function relation(s, eqeq) {
    var x = infix(s, 100, function (left, that) {
        // ...
        if (are_similar(left, right) ||
                ((left.id === '(string)' || left.id === '(number)') &&
                (right.id === '(string)' || right.id === '(number)'))) {
            that.warn('weird_relation');
        } else if (left.id === 'typeof') {
            if (right.id !== '(string)') {
                right.warn("expected_string_a", artifact(right));
            } else if (right.string === 'undefined' || right.string === 'null') {
                left.warn("unexpected_typeof_a", right.string);
            }
        } else if (right.id === 'typeof') {
            if (left.id !== '(string)') {
                left.warn("expected_string_a", artifact(left));
            } else if (left.string === 'undefined' || left.string === 'null') {
                right.warn("unexpected_typeof_a", left.string);
            }
        }
        // ...
    });
    // ...
}

给出特定警告的唯一其他时间是 JSLint 遇到未引用的 JSON 属性时:

{
    a: 1
}

只要有机会,我就会在http://jslinterrors.com上发布。

于 2013-08-30T06:39:44.727 回答