// pages/user/login.js const app = getApp(); Page({ /** * 页面的初始数据 */ data: { username: "", password: "" }, UserNameInput: function (e) { this.setData({ username: e.detail }); }, PassWordInput: function (e) { this.setData({ password: e.detail }); }, /** * 登录事件 */ login: function () { if (this.data.username == "") { wx.showToast({ title: '请输入账号', icon: "error" }) return; } if (this.data.password == "") { wx.showToast({ title: '请输入密码', icon: "error" }) return; } wx.showLoading({ title: '登录中' }) wx.request({ url: app.globalData.baseApi + '/baseapi/login', method: "post", header: { "content-type": "application/x-www-form-urlencoded" }, data: { n: this.data.username, p: this.data.password, from: 1, host: app.globalData.syshost }, success: function (res) { var httpresult = res.data; if (httpresult.status == 200) { wx.setStorageSync('token', httpresult.msg); wx.navigateTo({ url: '/pages/index/index', }) } else { wx.showModal({ title: "错误提示", content: httpresult.msg, cancelColor: 'cancelColor' }) } }, complete: function (res) { wx.hideLoading() } }) }}) [图片] json用引用了一些有赞的组件
真机调试Cannot read property globalData of undefined?在微信开发工具调试没有问题,真机调试会出现获取不到app.js中的globalData,然后报Cannot read property 'globalData' of undefined的错误 [图片] [图片] [图片] 然后小程序也不能正常使用了,请问这是什么地方出现的问题了?(小程序之前是能正常使用的,我就最近改了个接口地址,然后就发布新版本上去,就不能正常使用了)
2022-02-28