楼主有遇到过在A页面的js里判断后跳转B页面,也是跳转两次B页面的情况吗,而且逻辑跟页面wxml也不沾边。
在Input组件上绑定跳转事件,android上若设置disabled=true,会跳转两次在input组件上绑定点击事件,android上跳转没问题,ios上点击会弹出键盘,若设置为disable = true,则Android上会跳转两次,ios正常
2021-12-01官方公告说到10月20号完成调整,我是刚用上getuserprofile ,21号就发现只能获取昵称和头像了,正常正常,不是代码问题
怎么今天使用的getuserprofile不能获取用户信息了?获取的都是空信息,以前都是好的getUserProfile(e){ let that = this; wx.getUserProfile({ desc:'用于验证用户', success: (res) => { console.log(res.userInfo) var userInfo = res.userInfo that.setData({ userInfo:userInfo, nickName:userInfo.nickName, city:userInfo.city, province:userInfo.province, }) wx.request({ [图片] url: 'http://127.0.0.1/sqxt/login1.php', method: 'POST', data: { 'nickName': userInfo.nickName, 'city': userInfo.city, 'province': userInfo.province, }, header: { 'content-type': 'application/x-www-form-urlencoded' }, success(res) { console.log(res.data) if ("success" == res.data.replace(/^\s+|\s+$/g, '')) { wx.navigateTo({ url: '../sqxt/sqxt' }) } else if ("fail" == res.data.replace(/^\s+|\s+$/g, '') ) { wx.showModal({ title: '提示', content: '未授权用户,请联系管理员谢志奇获取授权,TEL:560155。', showCancel: "false", success(res) { console.log('用户点击确定'); wx.redirectTo({ url: '../login/login' }) } }) } } }) } }) },
2021-10-22