我的网站刚刚开始为以下 javascript 检查返回 false。我试图理解为什么。
_test = ["0e52a313167fecc07c9507fcf7257f79"]
"0e52a313167fecc07c9507fcf7257f79" in _test
>>> false
_test[0] === "0e52a313167fecc07c9507fcf7257f79"
>>> true
有人可以帮我理解为什么吗?
我的网站刚刚开始为以下 javascript 检查返回 false。我试图理解为什么。
_test = ["0e52a313167fecc07c9507fcf7257f79"]
"0e52a313167fecc07c9507fcf7257f79" in _test
>>> false
_test[0] === "0e52a313167fecc07c9507fcf7257f79"
>>> true
有人可以帮我理解为什么吗?
运算符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
“in”运算符在对象键中搜索,而不是值。您将不得不使用 indexOf 并注意它在以前的 IE 版本中的非实现。因此,您可能会在第一个 google 结果中找到 Array.prototype.indexOf 方法的跨浏览器实现。