挺好的
小游戏pc端使用wx.createUserInfoButton授权成功后wx.login进入faillet button = wx.createUserInfoButton({ type: 'text', text: '授权登录', style: { left: ddsystemInfo.screenWidth / 2 - 100, top: ddsystemInfo.screenHeight * 0.618 - 20, width: 200, height: 40, backgroundColor: '#16b161', color: '#ffffff', textAlign: 'center', fontSize: 16, lineHeight: 40, borderRadius: 4 } }); button.onTap((res) => { console.log(JSON.stringify(res)); button.destroy(); wx.login({ success(res) { console.log('login成功1', JSON.stringify(res)); }, fail: function (ress) { console.log('login未成功1', JSON.stringify(ress)); var getData = { result: "-1", data: { msg: 'login未成功' } }; } }) })
2021-05-06