问题是如何解决的啊,同问,谢谢
wx.login正式版本ios系统手机调用没反应微信小程序,ios系统部分手机点击登录调用wx.login接口没有反应,一直出现下面该种情况;在开发跟体验版本都是正常的,但是正式版本就不行,一直没有任何反应;希望官方人员能够认真对待,认真检查是不是微信端的问题,被这个要折磨疯了!!!!! (注:这个正式版本对ios系统手机发生率很高,影响了客户的正常使用,经常性的登录调用wx.login接口没反应,有些时候需要扫描二维码登录才可以,有的时候无论怎么试都没有任何反应,希望官方人员认真对待) [图片]
2019-10-11最后问题怎么结局了?我也在这个位置卡住了,楼主看到回复下,谢谢
wx.login接口ios系统登录不上,难道就没有官方解决吗?这么久了,没有解答- 当前 Bug 的表现(可附上截图) 拜托官方不要吃闲饭,这个问题这么久了,这么多人提出来,没有一个官方人员解决,到底还让不让用小程序?!!!!!!! 最起码给个说法,连个说法都不给,到底想干啥!!!!!! ios登录不上,卡在wx.login()接口 [图片] - 预期表现 拜托官方不要吃闲饭,这个问题这么久了,这么多人提出来,没有一个官方人员解决,到底还让不让用小程序?!!!!!!! 最起码给个说法,连个说法都不给,到底想干啥!!!!!! - 复现路径 - 提供一个最简复现 Demo // 登录 login: function () { var that = this; if (this.data.account.length == 0) { wx.showToast({ title: '账号不能为空', icon: 'none', duration:2000 }) } else if (this.data.password.length == 0){ wx.showToast({ title: '密码不能为空', icon: 'none', duration:2000 }) } else { wx.showLoading({ title: '加载中', }) wx.login({ success:function(res){ if(res.code){ app.globalData.isLogin = true var url = util.requestService("/***"); var updateUrl = util.requestService("/***"); var postdata = { js_code:res.code, appid:"***", secret:"***", account: that.data.account, password: that.data.password } function success(res){ console.log(res) if (res.data.code == 200){ var update = { encryption: res.data.encryption, topEmpId: res.data.topEmpId } function success(res){ console.log(res); wx.hideLoading(); if(res.data.code == 200){ wx.showToast({ title: '登录成功', icon: "success", duration: 2000 }) wx.switchTab({ url: "../punch/punch", }) }else{ wx.showToast({ title: res.data.message, icon:"none", duration:2000 }) } } util.getPostRequest(updateUrl, update, success); }else if(res.data.code == 99){ wx.hideLoading(); wx.showToast({ title: res.data.message, icon: "none", duration: 2000 }) }else{ wx.hideLoading(); wx.showToast({ title: res.data.message, icon: "none", duration: 2000 }) } } util.getPostRequest(url, postdata,success); }else{ wx.hideLoading(); wx.showToast({ title: '获取用户登录态失败!', icon: "none", duration:2000 }) } }, fail:function(res){ wx.showToast({ title: 'login登录接口失败', icon: "none", duration: 2000 }) wx.hideLoading(); } }) } },
2019-10-11