收藏
回答

9.15号后,为什么开发版,和体验版的 watch 命令在手机端不起作用了呢?

9.15号后,为什么开发版,和体验版的 watch 命令在手机端不起作用了呢?

PC上开发版 watch是正常的,之前发布的正式版也是正常的。

回答关注问题邀请回答
收藏

2 个回答

  • 社区技术运营专员-Jahozheng
    社区技术运营专员-Jahozheng
    2023-09-19

    请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。

    2023-09-19
    有用
    回复 1
    • 微光Smile
      微光Smile
      2023-09-19
      官方你好。代码如下,改代码在正式版中是正常的。
      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
                        })
                    }
                })
      2023-09-19
      回复
  • 微光Smile
    微光Smile
    2023-09-16

    真机调试后,出现了这样的错误。

    -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]"]

    2023-09-16
    有用
    回复
登录 后发表内容