js函数中的this指代问题.md 2022-01-09- 2022-08-07 126- 1m- 前端-前端js问题描述在尝试写微信小程序时发现调用接口后的回调中访问不到全局的this,查了一下资料发现需要用箭头函数,因为普通的回调函数自己有局部的this,而ES6中新增加的箭头函数没有自己的this,所以会访问上一级的this。 //普通函数 success: function (res) { console.log(this); } //箭头函数 success: (res)=>{ console.log(this);//上一级的this } 本文作者:Ma Haotian本文链接:https://qylh.xyz/posts/24e34a90/版权声明:本博客所有文章除特别声明外,均默认采用 许可协议。