1. 程式人生 > >es5 特性,在 map 迴圈過程中 this 丟失,失去上下文。

es5 特性,在 map 迴圈過程中 this 丟失,失去上下文。

doClick = (item) => {
  return item;
}

沒有繫結this。報錯:doClick not defined

arr.map(function(item) {
  console.log(this.doClick(item));
});

綁定了this。正確

arr.map(function(item) {
  console.log(this.doClick(item));
},this);