TypeError: invalid 'in' operand "x" - JavaScript 编辑
错误提示
TypeError: invalid 'in' operand "x" (Firefox) TypeError: Cannot use 'in' operator to search for 'x' in y (Chrome)
错误类型
哪里出错了?
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
对象进行检索的时候一定要特别小心,因为它检测的是索引值而不是位于索引位置的值。
var trees = ['redwood', 'bay', 'cedar', 'oak', 'maple'];
3 in trees; // true
"oak" in trees; // false
相关内容
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论