再最新的基础库v2.27.2版本中getUserProfile接口无法正常唤起
wx.getUserProfile({
lang: 'zh_CN',
desc: '登录', // 声明获取用户个人信息后的用途,后续会展示在弹窗中,请谨慎填写
success: (res) => {
console.log(res, '用户信息');
this.store.commit('updateUserinfo', res.userInfo);
this.userinfo_login(res)
setTimeout(() => {
this.buying = false;
}, 1000)
},
fail: (res) => {
// this.logining = false
setTimeout(() => {
this.buying = false;
}, 1000)
}
})