<template>
<button type="primary" open-type="getUserInfo" @getuserinfo="getuserInfo" withCreadentials="true">
微信登录
</button>
</template>
<script>
export default{
data:{
},
onLoad:function(){
},
methods:{
getuserInfo:function(res){
console.log(res);
if(!res.detail.iv){
uni.showToast({
title:"您取消了授权,登录失败",
icon:"none"
});
return false;
}
}
}
}
</script>
<style>
</style>
代码如上
sorry, 问题已经fix了,原来是我appid 写错了 囧
看看打印的数据res 是什么
你打印出来res是啥?
建议您在开发者工具里新建一个小程序项目,有源码哟