- wx.onLocalServiceFound 组件一直没有回调?
设备通过wifi连接手机都是正常的,目前就是获取ip阶段一直没有相应,求大佬们指点 startDiscovery:function(){ let that = this wx.startLocalServiceDiscovery({ serviceType:'_http._tcp.', success:function(res){ console.log(res) that.onLocalService() }, fail:function(err){ console.log(err) }, complete:function(){ console.log('complete') } }) }, onLocalService: function () { let that = this let serviceList = []; // 监听服务发现事件 wx.onLocalServiceFound(function (obj) { console.log(obj,'onLocalServiceFound') serviceList.push(obj) that.setData({ lists: serviceList }) }) [图片] 一直没有 wx.onLocalServiceFound api的监听回调
04-01 - 由于小程序违规,支付功能暂时无法使用?
小程序备案已经通过,但是小程序支付功能依旧提示 “由于小程序违规,支付功能暂时无法使用” 小程序appid wxda4d6d51180310a7
01-21