小程序
小游戏
企业微信
微信支付
扫描小程序码分享
模拟器展示效果为 false 但是 打印这个方法是存在的
真机调试效果 也是一样
请问是我的方法使用错了吗? 还是暂时没有支持呢? 不是很能理解
5 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
wx.canIUse('getUserProfile') 方法在开发者工具上表现正常,但到了真机就出现了问题 😡
所以目前只能通过 if 条件判断,虽然不够优雅,坐等微信修复~
if (wx.getUserProfile) { this.setData({ canIUseGetUserProfile: true }) }
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
已经解决。把wx. 去掉即可
直接if(wx.getUserProfile)判断就行啦
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
wx.canIUse('getUserProfile') 方法在开发者工具上表现正常,但到了真机就出现了问题 😡
所以目前只能通过 if 条件判断,虽然不够优雅,坐等微信修复~
if (wx.getUserProfile) { this.setData({ canIUseGetUserProfile: true }) }
this.setData({ canIUseGetUserProfile: true })
}这样写的 基础版本库已经调到2.17.0了 为啥还是false
已经解决。把wx. 去掉即可
直接if(wx.getUserProfile)判断就行啦