无法通过IIFE在其内部绑定对象方法

时间:2019-06-17 10:54:11

标签: javascript this apply bind

无法弄清楚为什么bind在对象方法中不能与IIFE一起使用?我错过了什么?

谢谢。

示例:

var a = {
  b: () => console.log('Hello'),
  c: (() => this.b()).bind(a)()
}

a.b()
a.c

// Error: Uncaught TypeError: this.b is not a function

0 个答案:

没有答案