如何使用 JavaScript 元编程实现 Thing 类中的 can 方法动态创建新方法?

如何使用 javascript 元编程实现 thing 类中的 can 方法动态创建新方法?

使用 javascript 元编程实现 thing 类

问题:

实现一个 thing 类,该类的 can 方法可以动态创建新方法,如以下示例代码所示:

  const jane = new thing('jane');
  jane.can.speak(phrase => `${name} says: ${phrase}!`);
  expect(jane.speak('hello')).to.equal('jane says: hello!');

问题所在:

在 can.speak 中,name 变量的值从哪里获取?

解决方案:

  • 使用 globalthis: 创建 thing 实例时将 name 作为全局变量存储到 globalthis 对象中。在调用 speak 函数时,访问 globalthis.name 获取名称。
class Thing {
  constructor(name) {
    this.name = name;
    globalThis.name = name;
  }
}

以上就是如何使用 JavaScript 元编程实现 Thing 类中的 can 方法动态创建新方法?的详细内容,更多请关注www.sxiaw.com其它相关文章!