在 Javascript 中检查对象是否为数组的最佳方法是什么?
假设我有一个像这样的函数:
function foo(bar) {
if (bar > 1) {
return [1,2,3];
} else {
return 1;
}
}
假设我调用 foo(1)
,我怎么知道它是否返回一个数组?
Say I have a function like so:
function foo(bar) {
if (bar > 1) {
return [1,2,3];
} else {
return 1;
}
}
And say I call foo(1)
, how do I know it returns an array or not?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
我使用这个函数:
是 jQuery.isArray 的实现方式。
查看这篇文章:
I use this function:
Is the way that jQuery.isArray is implemented.
Check this article:
更新:我必须回应下面的评论,因为人们仍然声称如果不亲自尝试这将行不通......
对于其他一些对象,这种技术不起作用(例如“ “instanceof String == false),但这适用于数组。 我在 IE6、IE8、FF、Chrome 和 Safari 中进行了测试。 在下面发表评论之前先尝试一下并亲自看看。
Update: I have to respond to the comments made below, because people are still claiming that this won't work without trying it for themselves...
For some other objects this technique does not work (e.g. "" instanceof String == false), but this works for Array. I tested it in IE6, IE8, FF, Chrome and Safari. Try it and see for yourself before commenting below.
从 ES5 开始,有 <代码>isArray。
As of ES5 there is
isArray
.这是一种非常可靠的方法,取自 Javascript: the good parts,由 O'Reilly 发布:
我建议将其包装在您自己的函数中:
Here is one very reliable way, take from Javascript: the good parts, published by O'Reilly:
I would suggest wrapping it in your own function:
为了使您的解决方案更加通用,您可能不关心它是否实际上是一个 Array 对象。 例如,document.getElementsByName() 返回一个“行为类似于”数组的对象。 如果对象具有“长度”属性,则可以假定“数组合规性”。
To make your solution more general, you may not care whether it is actually an Array object. For example, document.getElementsByName() returns an object that "acts like" an array. "Array compliance" can be assumed if the object has a "length" property.