如何测试对象“isEmpty()”是否为空如果 Object.prototype 被修改了?

发布于 2024-12-24 22:18:05 字数 566 浏览 1 评论 0原文

我想测试一个对象是否为空:{}。通常使用以下内容:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小瓶盖 2024-12-31 22:18:05

只需删除 obj.hasOwnProperty 过滤器即可:

function isEmpty(obj) {
  for (var prop in obj) {
    return false;
  }
  return true;
}

DEMO

这样它还会告诉您是否包含任何属性或者原型链中是否有任何内容(如果这是您想要的)。

您可以更改

if (obj.hasOwnProperty(prop))

为。

if (!obj.hasOwnProperty(prop))

或者,如果您只想知道是否有什么东西弄乱了它的原型,

Just remove the obj.hasOwnProperty filter:

function isEmpty(obj) {
  for (var prop in obj) {
    return false;
  }
  return true;
}

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

if (obj.hasOwnProperty(prop))

to

if (!obj.hasOwnProperty(prop))

if you only want to know if something is messing with it's prototype.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文