微信小程序使用uniapp 开发时,需要使用用到微信登录获取code
login() {
var that = this;
uni.login({
provider: 'weixin',
success: function(loginRes) {
console.log(loginRes.code)
that.code = loginRes.code
}
});
},