微信小程序 --- 【TypeError: Cannot read property ‘forceUpdate‘ of undefined】 1. 报错 2. 报错原因 由于使用的是 Taro 多端框架,运行编译后的微信小程序没有对应的AppId导致! 3. 解决办法 设置---> 项目设置 ---> 基本信息 ---> 在APPID栏目添加你自己申请的appid,或者使用测试的appid 4. 刷新 完...
this.data.messageId } else if (res.cancel) { console.log('用户点击取消') } } }) 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 如果这么写,会遇到“Cannot read property 'data' of undefined ”的错误。、 箭头函数是ES6的写法,不同的写法,会导致“this”的指代层级不同,所以会找不到data属性。
11. 如果这么写,会遇到“Cannot read property ‘data’ of undefined ”的错误。 如果将success改成箭头函数的写法,就不会出错。 wx.request({ url: 'http://192.168.0.108:8080/wx_background_war_exploded/Servlet04', //仅为示例,并非真实的接口地址 data: { }, header: { 'content-type': '...
简介:【微信小程序】TypeError: Cannot read property ‘get‘ of undefined & Error: MiniProgramError 一、问题场景 在写 uni-app 项目的时候,跟着视频一步一步的弄,一运行就发现报错了,然后就开始各种百度了。 找不到定义 WAServiceMainContext.js?t=wechat&s=1680006165208&v=2.30.2:1 TypeError: Can...
解决办法:loginAct: () => {}改成loginAct(){} loginAct(){console.log("执行了");varthat=this;wx.getStorage({key:'user',success:function(res){console.log("信息数据res为",res);that.setData({userInfo:res.data,},()=>{console.log("重新刷新数据");})}})}...
进入正题吧,刚在写代码的时候,报了这样一个错误 然后把this输一下是undefined,因为这个时候this指向的是当前wx对象,而wx对象没有setData,我们应该将this的指向修改为page对象 只要把success改成箭头函数就ok啦。。。
微信小程序开发给data中的变量赋值,出现以下错误: VM1610:1 thirdScriptError Cannot read property 'setData' of undefined;at pages/index/index checkSession function;at api request success callback function TypeError: Cannot read property 'setData' of undefined ...
微信小程序报Cannot read property ‘forceUpdate’ of undefined错误? 1.更改微信开发者工具appId 2.HBulder保存appId 3.最后重启项目
要先判断TIM.EVENT.SDK_READY,sdk变成readay状态后才能调用getConversationList
打开之后找到微信小程序配置——> 微信小程序AppID 把你自己的小程序ID填进去之后重启HBuilder 和微信开发者工具,然后重新运行当前项目就OK了