Errors: in operator no object
Errors: in operator no object
信息
TypeError: invalid 'in' operand "x" (Firefox)
TypeError: Cannot use 'in' operator to search for 'x' in y (Chrome)
错误类型
TypeError
什么地方出了错?
该in
运营商只能用来检查一个属性中的对象。您不能在字符串,数字或其他基本类型中搜索。
例子
在字符串中搜索
与其他编程语言(例如Python)不同,您不能使用in
运算符在字符串中搜索。
"Hello" in "Hello World";
// TypeError: invalid 'in' operand "Hello World"
相反,您将需要使用String.prototype.indexOf()
,例如。
"Hello World".indexOf("Hello") !== -1;
// true
操作数不能是null或undefined
确保你正在检查的对象不是实际null
或者undefined
。
var foo = null;
"bar" in foo;
// TypeError: invalid 'in' operand "foo"
该in
操作总是期望的对象。
var foo = { baz: "bar" };
"bar" in foo; // false
"PI" in Math; // true
"pi" in Math; // false
在数组中搜索
使用in
操作搜索Array
对象时要小心。该in
操作检查索引号,而不是索引处的值。
var trees = ['redwood', 'bay', 'cedar', 'oak', 'maple'];
3 in trees; // true
"oak" in trees; // false