- wx.getUserProfile 中 encryptedData 解析出来没有watermark?
wx.getUserProfile 中 encryptedData 真机解析出来没有watermark, 开发者工具解析出来且有,这个要怎么处理呢,难道后端也要改才可以吗?
2022-11-17 - wx.getUserProfile() 华为手机上面调用不起但是在开发者工具里面的真机测试又可以用?
wx.getStorage({ key: 'userInfo', success (res) { tools.showToast('成功',res) that.userInfo = res.data; that.getOpenId() }, fail (err) { tools.showToast('失败',err) wx.getUserProfile({ desc: '正在获取', //不写不弹提示框 success: function (res) { that.userInfo = res.userInfo; wx.setStorage({ key: 'userInfo', data: res.userInfo }); that.getOpenId() }, fail: function (err) { console.log("获取失败: ", err) } }) } });
2021-06-10