最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Create dynamic non-configurable properties using Proxy - Stack Overflow

programmeradmin1浏览0评论

I want to create dynamic non-configurable properties using Proxy. I tried this:

const proxy = new Proxy({}, {
  getOwnPropertyDescriptor() {
    return {
      configurable: false,
      enumerable: false,
    };
  },
});

console.log(Reflect.getOwnPropertyDescriptor(proxy, 'test'));

I want to create dynamic non-configurable properties using Proxy. I tried this:

const proxy = new Proxy({}, {
  getOwnPropertyDescriptor() {
    return {
      configurable: false,
      enumerable: false,
    };
  },
});

console.log(Reflect.getOwnPropertyDescriptor(proxy, 'test'));

But I'm getting an error:

TypeError: 'getOwnPropertyDescriptor' on proxy: trap reported non-configurability for property 'test' which is either non-existant or configurable in the proxy target

MDN says that:

A property cannot be reported as non-configurable, if it does not exists as an own property of the target object or if it exists as a configurable own property of the target object.

But it doesn't explain what's the reasoning behind this.

Is there any workaround for this error?

Share Improve this question edited Dec 1, 2016 at 22:58 Michał Perłakowski asked Dec 1, 2016 at 22:52 Michał PerłakowskiMichał Perłakowski 92.8k30 gold badges163 silver badges187 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 12

Not really. This is due to the desirable invariant that, if you observe a non-configurable property in an object, it can't magically disappear. And if it's also non-writable, its value must not change.

If you couldn't rely on this, getOwnPropertyDescriptor would be basically useless.

Enforcing you not to use non-configurable properties, or defining them in the target, implies that you won't violate this invariant, because the invariant holds on the target by construction. That is, ECMAScript doesn't allow you to use the Proxy customizations in a way that breaks these invariants.

Some of the internal method invariants defined in 6.1.7.3 are essential integrity invariants. These invariants are explicitly enforced by the proxy object internal methods specified in this section. An ECMAScript implementation must be robust in the presence of all possible invariant violations.

So either report the property as configurable, or define non-configurable properties in the target.

If you want dynamic properties I remend to just lie say the property is configurable. And then add a defineProperty trap which returns false, effectively preventing redefinitions.

It seems that if inside getOwnPropertyDescriptor trap I define that property on the target object before returning the descriptor, it works fine.

const proxy = new Proxy({}, {
  getOwnPropertyDescriptor(target, property) {
    const descriptor = {
      configurable: false,
      enumerable: false,
    };
    Reflect.defineProperty(target, property, descriptor);
    return descriptor;
  },
});

console.log(Reflect.getOwnPropertyDescriptor(proxy, 'test'));

The side effect is (obviously) the created property, which cannot be deleted (because it's non-configurable), which means that for example I cannot report it as non-existent later, but in my case it doesn't matter.

发布评论

评论列表(0)

  1. 暂无评论