请稍等 ...
×

采纳答案成功!

向帮助你的同学说点啥吧!感谢那些助人为乐的人

为什么箭头函数里面的赋值不成功,但是匿名函数里面的可以

let _this = this
// 匿名函数
_this.$refs.player.addEventListener('canplay', function () {
  _this.duration = this.duration
}, false)
// 箭头函数
_this.$refs.player.addEventListener('canplay', () => {
  _this.duration = this.duration
}, false)

请教一下老师为什么

正在回答

1回答

ustbhuangyi 2020-02-09 23:06:16

匿名函数会有问题吧,匿名函数中的 this.duration 的 this 不会指向组件实例

1 回复 有任何疑惑可以回复我~
问题已解决,确定采纳
还有疑问,暂不采纳
意见反馈 帮助中心 APP下载
官方微信