Page({ /** * 页面的初始数据 */ data: { king: "tiger" }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { this .testES6(); this .test() }, testES6: res => { console.log( "testES6#" , this ); }, test: function (res) { console.log( "test#" , this ); }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () { }, /** * 生命周期函数--监听页面显示 */ onShow: function () { }, /** * 生命周期函数--监听页面隐藏 */ onHide: function () { }, /** * 生命周期函数--监听页面卸载 */ onUnload: function () { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () { }, /** * 用户点击右上角分享 */ onShareAppMessage: function () { }, }) |
情况1
情况2
求大佬解释一下,这是为啥
建议先去看一下箭头函数的用法和特性https://es6.ruanyifeng.com
=> 表达式 ()=>{ this//这个指的是外面的this ,而 es6转es5 启用严格模式,没有this (window) 所以是undefined }
testEs6() {}即可
你的res是什么问下?