Cannot read property 'globalData' of null;微信小程序
程序员文章站
2022-05-06 07:59:25
...
Cannot read property 'globalData' of null;
Cannot read property ‘globalData’ of null;
1.报错:Cannot read property ‘globalData’ of null;
2.错误分析:
这个报错的原因可能是this的指向不明确,导致在设置或者获取页面变量或者全局变量的时候出现
3.解决方法:
在页面定义方法的时候,第一步先声明一个变量var that=this
将页面的指针先赋值给that,然后在函数中使用判断,或者循环,或者对象的时候获取变量直接为that.data
获取。
如果是获取全局变量的话就可以先在页面第一行声明var app = getApp()
方法中获取全局变量直接使用app.globalData.userInfo
来获取
4.样例
先在index.js中定义一个pwdInput方法,页面的话可以直接在index.wxml中添加一个input框,绑定pwdInput这个方法就行
var app = getApp()
page({
data: {
phone: '',
password: '',
phoneTest:'18119999999'
},
pwdInput: function (e) {
var that=this
this.setData({//这一行的this也可以换成that
password: e.detail.value,
phone:that.data.phoneTest //这里不能使用this
})
wx.sendSocketMessage({
data:that.data.password //这里不能使用this,因为this指向了当前的sendSocketMessage里面的对象
})
//获取全局变量
let gPhone = app.globalData.userPhone
//设置全局变量
app.globalData.userPwd = this.data.password //这里this可以换成that
}
})
上一篇: 微信小程序内解决view内文字过多溢出
下一篇: 微信小程序 简单获取屏幕视口高度
推荐阅读
-
微信小程序如何使用globalData的方法
-
微信小程序报Cannot read property 'setData' of undefined的错误
-
微信小程序 getMapRegion:fail:mapview is null
-
微信小程序报Cannot read property 'setData' of undefined的错误
-
Cannot read property 'globalData' of null;微信小程序
-
js事件处理程序 Uncaught TypeError: Cannot read property 'addEventListener' of null
-
微信小程序-- 请求数据传到服务端为null 解决方法
-
微信小程序定义和调用全局变量globalData
-
微信小程序 getMapRegion:fail:mapview is null