上一篇:微信小程序学习笔记(四)
【小程序登录】wx.login()
app.js:
App({
onLaunch: function () {
// 登录
wx.login({
success: function (res) {
if (res.code) {
//发起网络请求
wx.request({
url: 'https://www.msllws.top/delcode.php',
data: {
code: res.code
}
})
} else {
console.log('登录失败!' + res.errMsg)
}
}
});
}
})
初始化后得到了临时登录凭证code,使用wx.request()发送code,请求后台接口获取【会话密