3

我的网站刚刚开始为以下 javascript 检查返回 false。我试图理解为什么。

_test = ["0e52a313167fecc07c9507fcf7257f79"]
"0e52a313167fecc07c9507fcf7257f79" in _test
>>> false
_test[0] === "0e52a313167fecc07c9507fcf7257f79"
>>> true 

有人可以帮我理解为什么吗?

4

3 回答 3

5

运算符in测试属性是否在对象中。例如

var test = {
    a: 1,
    b: 2 
};

"a" in test == true;
"c" in test == false;

您想测试数组是否包含特定对象。您应该使用 Array#indexOf 方法。

test.indexOf("0e52...") != -1 // -1 means "not found", anything else simply indicates the index of the object in the array.

MDN 上的 Array#indexOf:https ://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Array/indexOf

于 2013-04-09T21:01:12.383 回答
1

来自MDN

如果指定的属性在指定的对象中,则 in 运算符返回 true。

它检查键,而不是值。

在那里,属性键将是0,而不是"0e52a313167fecc07c9507fcf7257f79"

你可以测试一下0 in _testtrue

如果要检查值是否在数组中,请使用indexOf

_test.indexOf("0e52a313167fecc07c9507fcf7257f79")!==-1

(IE8 需要 MDN 提供的 shim)

于 2013-04-09T21:00:20.797 回答
0

“in”运算符在对象键中搜索,而不是值。您将不得不使用 indexOf 并注意它在以前的 IE 版本中的非实现。因此,您可能会在第一个 google 结果中找到 Array.prototype.indexOf 方法的跨浏览器实现。

于 2013-04-09T21:03:09.380 回答