个人案例
- 邻居搭车
邻居上班族顺道搭车
邻居搭车扫码体验
求助官方后很快恢复了正常
watch一直连不上?报超时之前一直用的还好,偶尔也会碰到,昨晚开始到现在就一直连不上了,一直在onError里面报这个错误,最初我还以为时欠费了呢,不是啊,帮看下怎么回事嘛。 [图片] appid:wxf192e991a462d7ba index.js:855 watcher onError Error: errCode: -402002 realtime listener init watch fail | errMsg: init watch fail Error: wsclient.send timedout history states: UNINIT-(loginStart)->INIT_LOGGING_IN-(loginSuccess)->INIT_LOGGED_IN-(initWatchStart)->INIT_WATCH_PENDING-(initWatchFail)->INIT_WATCH_FAIL-(loginStart)->INIT_LOGGING_IN-(loginSuccess)->INIT_LOGGED_IN-(initWatchStart)->INIT_WATCH_PENDING-(initWatchFail)->INIT_WATCH_FAIL-(loginStart)->INIT_LOGGING_IN-(loginSuccess)->INIT_LOGGED_IN-(initWatchStart)->INIT_WATCH_PENDING-(initWatchFail)->INIT_WATCH_FAIL-(close)->CLOSED at new N (<anonymous>:1:153606) at _FSMListener (<anonymous>:1:266977) at <anonymous>:1:254506 at Set.forEach (<anonymous>) at Bo.transition (<anonymous>:1:254489) at Object.onTimeoutError (<anonymous>:1:261115) at ba.handleCommonError (<anonymous>:1:263673) at ba.<anonymous> (<anonymous>:1:260916) at Generator.next (<anonymous>) at t (<anonymous>:1:352)(env: Windows,mp,1.06.2306020; lib: 2.32.3)
2023-06-30我也遇到,从昨晚开始,现在一直时超时,就一个连不上了
云开发使用watch监听,非常稳定的10多秒时报402002异常,官方看看吧?云开发使用watch监听,非常稳定的10多秒时报402002异常。代码就这么几行: [图片] 报错如下: [图片] 可以确定的是,云环境id没错:cloud1-5g5j75hl5846ef13,_openid也没错:ofUpM5TC_EHcLgoYofzD_LVBxINM,集合名称也没错:MF_USERS。 以提供代码片段,望官方或大神指点: https://developers.weixin.qq.com/s/xx3gClmf7qJG
2023-06-30查找下是否有自写或者三方组件用到input,focus设置了true,而这个组件不是直接显示,在一定条件才显示。
原生input iphone机型下自动弹出键盘?。<van-popup custom-style="height: 50%; width:100%" position="bottom" show="{{ isShow }}" bind:close="onClose"> <van-picker show-toolbar columns="{{ columns }}" bind:confirm="onConfirm" bind:cancel="onClose" active-class="active-blue"> <!-- picker修改源码 --> <view slot="after" wx:if="{{schoolshow}}"> <input wx:if="{{schoolshow}}" type="text" style="background: #eee;margin-top: 10px;font-size: 13px;width: 200px;height: 60rpx;border-radius: 5px;padding-left: 5px;border-radius: 35rpx" placeholder="没有我所在的学校,请填写" bindinput="bindCode" focus="false" auto-focus="false" /> </view> </van-picker> </van-popup>
2023-02-07建议搞清楚基本的ifelse用法。 } else { result = ...; } return result; },
编写一个函数,返回值是undefined,请教,为什么?函数里面数据得到数据正常,可是teturn出来,lastpost1就undefined,请教,为什么? var s = res.result.data; for(var j=0;j<s.length;j++) { var lastpost1 = this.timeago(s[j].dblastpost); console.log("lastpost1==", lastpost1); s[j].lastpost = this.timeago(s[j].dblastpost); console.log("s[j].lastpost==", s[j].lastpost); } // 将时间戳转换为几分钟前、几小时前 timeago: function (dateTimeStamp) { // dateTimeStamp是一个时间毫秒,注意时间戳是秒的形式,在这个毫秒的基础上除以1000,就是十位数的时间戳。13位数的都是时间毫秒。 var minute = 1000 * 60; //把分,时,天,周,半个月,一个月用毫秒表示 var hour = minute * 60; var day = hour * 24; var now = new Date().getTime(); //获取当前时间毫秒 var diffValue = now - dateTimeStamp; //时间差 var result = ''; if (diffValue < 0) { console.log("diffValue < 0 diffValue==", diffValue); return result; } var minC = diffValue / minute; //计算时间差的分,时,天,周,月 var hourC = diffValue / hour; var dayC = diffValue / day; if (dayC >= 1 && dayC <= 3) { result = "" + parseInt(dayC) + "天前"; } else if (hourC >= 1 && hourC <= 24) { result = "" + parseInt(hourC) + "小时前"; } else if (minC >= 1 && minC <= 60) { console.log("result = minC",minC); result = "" + parseInt(minC) + "分钟前"; } else if (minC < 1) { console.log("result = 刚刚"); result = "刚刚"; } else return result; },
2022-03-14setInterval(this.timeDifference,1000) y以后报错信息原样拷贝出来,更便于确认问题 h还有that.setData,用this,你that在onload定义,却在别的方法里调用,无语哦
有没有大神帮我看看为什么一直出现referenceError的报错啊?Page({ /** * 页面的初始数据 */ data: { hours :0, minute :0, second :0, startTime : 1647233688, timeDifference :'' }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { var that=this setInterval(timeDifference,1000) }, timeDifference: function(){ var endTime = Date.parse(new Date()); var usedTime = endTime - this.data.startTime //小时 var firststep_hours = usedtime % (24*60*60*1000); var hours = Math.floor(firststep_hours / (60*60*1000)); //分钟 var firststep_minute = firststep_hours % (60*60*1000); var minute = Math.floor(firststep_minute / (60*1000)); //秒 var firststep_second = firststep_minute % (60*1000); var second = Math.floor(firststep_second / 1000); //赋值 that.setData({ hours: that.timeDifference.hours, minute: that.timeDifference.minute, second: that.timeDifference.second }); return hours; }
2022-03-14同时也这个代码,部分不同用户返回了出奇一致的经纬度数据113.2645,23.1288,这个比例有1-2成
地图组件callout content在ios上不显示map组件上显示多个定位点,每个定位点显示callout content,工具和Android真机上正常,能够完全显示,但是ios真机上不显示,只能显示个别。代码片段需appid调试,appid:wxf192e991a462d7ba, Android正常显示 [图片] 下边ios不正常显示 [图片]
2022-03-09一样问题
小程序Map组件中callout的content文本在苹果手机上不显示?callout的content文本在安卓手机上显示,在苹果手机怎么弄都不显示出来,是怎么回事,求助 安卓: [图片] 苹果: [图片] marker代码: [图片]
2022-01-10wxf192e991a462d7ba test-41dbdb 程序片段可直接用,里面没有网络请求代码
使用collection.watch监听数据,经常不成功报错18次后成功。 复现方式:第一次成功(打印init)后,工具上不停点击编译,没几次就复现。 手机上正常使用:多次重新进入小程序,也是没几次就复现。 [图片]
2021-05-3110秒20秒都没用,貌似跟等待时间无关,有时很快就可以,有时很久
watcher.close()关掉watch监听后再重新启动报错?the watch closed because of error Error: errCode: -402002 realtime listener init watch fail | errMsg: init watch fail Error: invalid state: ws connection not exists, can not send message history states: UNINIT-(loginStart)->INIT_LOGGING_IN-(loginSuccess)->INIT_LOGGED_IN-(initWatchStart)->INIT_WATCH_PENDING-(initWatchFail)->INIT_WATCH_FAIL-(loginStart)->INIT_LOGGING_IN-(loginSuccess)->INIT_LOGGED_IN-(initWatchStart)->INIT_WATCH_PENDING-(initWatchFail)->INIT_WATCH_FAIL-(loginStart)->INIT_LOGGING_IN-(loginSuccess)->INIT_LOGGED_IN-(initWatchStart)->INIT_WATCH_PENDING-(initWatchFail)->INIT_WATCH_FAIL-(close)->CLOSED
2021-05-31不要在watch回调比如onchange里面直接关闭watcher
实时数据报错,不知道什么原因?current state (CLOSED) does not accept "initWatchFail" [图片]
2021-05-28