箭头函数里面 this 为 undefined
页面里面有个函数名为 add,如果以 add: function(result) {} 的形式定义,在函数里面可以用 this.data 拿到页面的数据,但如果以 add: result => {} 的形式定义函数,在函数里面 this 报 undefined,拿不到页面数据,我在箭头函数里面,调用 this 之前先把 this 赋值给 that,然后调用 that.data 也是 undefined,请问如果我要用箭头函数来写,这个应该怎么改呀