let 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未成功'
}
};
}
})
})
官方的《小游戏示例》小游戏在PC端无法复现你的BUG,gitHub连接 https://github.com/wechat-miniprogram/minigame-demo
这个授权接口不是说该替换成新的了吗,旧的接口获取不到啥信息啊
我这里给出的微信版本和基础库版本都是pc端微信的