1

我有一些这样的代码:

function changeProperty(prototype: Object, propertyKey: string) {
  Object.defineProperty(prototype, 'extra', {
    get: () => 'added'
  });

  const existing = Object.getOwnPropertyDescriptor(prototype, propertyKey);
  Object.defineProperty(prototype, propertyKey, {
    get: () => 'pass'
  });
}

class Test {
  @changeProperty
  get original() { return 'fail'}
}

// Write TypeScript code!
const appDiv: HTMLElement = document.getElementById('app');
const x = new Test() as any;
appDiv.innerHTML = `original: ${x.original}<br/>extra: ${x.extra}`;

https://stackblitz.com/edit/typescript-j8s1bq

我观察到该extra属性已成功添加,但我无法覆盖/覆盖/删除现有属性。

我无法弄清楚为什么会这样。

如果我使用类装饰器,我可以使用相同的技术来覆盖 getter。

4

1 回答 1

0

我错过的是,对于访问器装饰器,您将PropertyDescriptor传入作为第三个参数。

执行以下操作就足够了:


propertyDescriptor.get = () => 'new value';
于 2020-04-11T22:26:40.970 回答