Page({
data: {
motto: 'Hello World',
userInfo: {}
},
//事件处理函数
bindViewTap: function() {
wx.navigateTo({
url: '../logs/logs'
})
},
testFn: function(){
console.log('hello')
},
onLoad: function () {
console.log(this.testFn())
var that = this
//调用应用实例的方法获取全局数据
app.getUserInfo(function(userInfo){
//更新数据
that.setData({
userInfo:userInfo
})
})
}
})
在android平台上this调用testFn方法报错,ios可以正常调用