- 请问为什么获取出来的ip数据调试器正常,真机调试就乱码了呢?
sohu的数据没有乱码,但是从pconline获取的数据在调试器是正常的,真机调试就乱码了,请问是什么原因呢,谢谢~ [图片]
2022-11-23 - 大佬们,这是报的个什么错,自从基础库升级到2.27.2以后?
自从升级到2.27.2基础库以后,每次编译都会报这个错,并且下面的报错中,数字6会随着编译一次增加1,是个什么情况啊? routeDone with a webviewId 6 that is not the current page(env: Windows,mp,1.06.2209190; lib: 2.27.2) [图片]
2022-11-17 - 为什么我的开发工具能获取到用户昵称和头像,真机调试或手机预览获取到的是“微信用户”和灰色头像呢?
请问是什么原因,在开发工具里面点击登录就能弹出授权窗口,但是点击开发工具的真机调试或预览,就不会弹出授权窗口,然后直接就显示了“微信用户”和灰色头像了 谢谢!!!!!!! // pages/index/index wxml <view class="indexContainer"> <view wx:if="{{userInformation===null}}"> <button class="profile" bindtap="getUserProfile" type="primary" size="default">授权登录</button> </view> <view wx:else> <block class="userinfo-top"> <image class="avatarUrl" src="{{userInformation.avatarUrl}}"></image> <text class="userName">{{userInformation.nickName}}</text> </block> <button class="Info" type="warn" bindtap="getUserInfo">退出登录</button> </view> </view> // pages/index/index.js Page({ /** * 页面的初始数据 */ data: { msg:'测试数据', userInformation:wx.getStorageSync('userInformation'), }, // 获取用户信息的回调 getUserProfile(e) { // 开发者妥善保管用户快速填写的头像昵称,避免重复弹窗 wx.getUserProfile({ desc: '用于完善会员资料', // 声明获取用户个人信息后的用途,后续会展示在弹窗中,请谨慎填写 success: (res) => { let userInformation=res.userInfo console.log(res.userInfo.nickName) // 写入缓存 wx.setStorageSync('userInformation', userInformation) // 更新用户信息 this.setData({ userInformation: userInformation, }) // 登录成功提示 wx.showToast({ title: '(登录成功)', icon:'success', duration:2000 }) }, fail:()=>{ wx.showToast({ title: '授权失败', icon:'error', duration:2000 }) } }) }, getUserInfo(e) { var that=this wx.showModal({ title:'温馨提示', content:'确定要退出登录吗?', success(res){ if (res.confirm) { that.setData({ userInformation:null }) // 清空缓存 wx.setStorageSync('userInformation', null) wx.showToast({ title: '退出成功', icon:'success', duration:2000, }) } } }) }, })
2022-11-16