小程序
小游戏
企业微信
微信支付
扫描小程序码分享
9.15号后,为什么开发版,和体验版的 watch 命令在手机端不起作用了呢?
PC上开发版 watch是正常的,之前发布的正式版也是正常的。
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
真机调试后,出现了这样的错误。
-402012 realtime listener init ws fail | errMsg: errors of each retry (latest to oldest): ["[object Object]","[object Object]","[object Object]","[object Object]","[object Object]","[object Object]"]
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
PC端开发版也是正常的,但是安卓手机上的开发版和体验版,wathch都会报错。-402012
that.wather=db.collection("chat_record").where(
_.or([
{
userA_openid: _.eq(app.globalData.userInfo._openid),
userAshow:_.eq(true),
record:_.neq([])
},
{
userB_openid: _.eq(app.globalData.userInfo._openid),
userBshow:_.eq(true),
record:_.neq([])
}
])
).orderBy("time","desc").watch({
onChange: function(snapshot){
that.setData({
my_friends : snapshot.docs
})
console.log(snapshot.docs)
wx.hideLoading()
wx.setStorageSync("messagelist",snapshot.docs)
},
onError : function(err){
console.log(err)
that.wather.close()
wx.showToast({
title: "请下拉刷新",
icon:"error",
duration:2000
})
}
})
真机调试后,出现了这样的错误。
-402012 realtime listener init ws fail | errMsg: errors of each retry (latest to oldest): ["[object Object]","[object Object]","[object Object]","[object Object]","[object Object]","[object Object]"]