wx.getUserProfile和open-type="getUserInfo"同时使用的问题?
由于近期授权接口的调整,现在让用户授权时已经改为了使用wx.getUserProfile进行授权弹窗提醒,但是button组件上依然加了open-data="getUserInfo"的属性,具体代码为<button bindtap =“getUserInfo” open-type=“getUserInfo” > 微信授权快速登录</button>;js中getUserInfo(){wx.getUserProfile({ desc: ‘展示用户信息’, success: (res) => {console.log(res); }})},在正式版中出现了弹出两次授权请求的情况,但体验版与开发版都为正常一次弹窗。