如何测试对象“isEmpty()”是否为空如果 Object.prototype 被修改了?
我想测试一个对象是否为空:{}
。通常使用以下内容:
function isEmpty(obj) {
for (var prop in obj) {
if (obj.hasOwnProperty(prop))
return false;
}
return true;
}
但假设将 Object
原型添加到如下:
Object.prototype.Foo = "bar";
测试:
alert(isEmpty({})); // true
Object.prototype.Foo = "bar";
alert({}.Foo); // "bar" oh no...
alert(isEmpty({})); // true ...**huh?!**
我尝试破坏对象的原型,更改其构造函数,以及各种此类黑客行为。什么都没用,但也许我做错了(可能)。
I want to test whether an object is empty: {}
. The following is typically used:
function isEmpty(obj) {
for (var prop in obj) {
if (obj.hasOwnProperty(prop))
return false;
}
return true;
}
But suppose the Object
prototype was added to as follows:
Object.prototype.Foo = "bar";
Tests:
alert(isEmpty({})); // true
Object.prototype.Foo = "bar";
alert({}.Foo); // "bar" oh no...
alert(isEmpty({})); // true ...**huh?!**
I tried to nuke the object's prototype, change it's constructor, and all manner of such hacks. Nothing worked, but maybe I did it wrong (probable).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需删除 obj.hasOwnProperty 过滤器即可:
DEMO
这样它还会告诉您是否包含任何属性或者原型链中是否有任何内容(如果这是您想要的)。
您可以更改
为。
或者,如果您只想知道是否有什么东西弄乱了它的原型,
Just remove the
obj.hasOwnProperty
filter:DEMO
This way it will also tell you if contains any properties or if anything is in the prototype chain, if that's what you want.
Alternatively you can change
to
if you only want to know if something is messing with it's prototype.