wx.py.login()在新版开发者工具企业微信小程序模式下及真机企业微信环境中报Cannot read property 'login' of undefined
微信开发者工具版本:1.05.2203251
企业微信的调试基础库:2.17.0
真机企业微信环境下:WeChatLib:2.19.2 wxwork:企业微信环境
代码片段:
onLaunch: function () {
wx.getSystemInfo().then(res => {
console.log('systemInfo', res)
if (res.environment === "wxwork") { //企业微信环境
wx.qy.checkSession({
success: (res) => {
console.log(res);
},
fail: (err) => {
wx.py.login({
success(res) {
},
fail(err) {
},
complete(e) {
}
})
}
})
}
}).catch(err => console.log(err))
}
wx.qy.login 不是 wx.py.login(