uni-app微信小程序新版授权登录方式 最新登录方式 2021-07-09

记录时间:2021-07-09  uniapp微信小程序获取用户信息代码

<template>
    <view class="page-login">
        <view v-if="canIUse||canIGetUserProfile">
            <view class='login-header'>
                <image style="width: 140rpx; height: 140rpx;" mode="aspectFit" src="../../static/logo.png"></image>
                <view class="name">登录</view>
            </view>
            <view class='content'>
                <view>申请获取以下权限</view>
                <text>获得你的公开信息(昵称、头像、地区等)</text>
            </view>
           
            <view class="login-box">
                 <!--新版登录方式-->
                <button v-if="canIGetUserProfile" class='login-btn' type='primary' @click="bindGetUserInfo"> 授权登录 </button>
                <!--旧版登录方式-->
                <button v-else class='login-btn' type='primary' open-type="getUserInfo" withCredentials="true" lang="zh_CN" @getuserinfo="bindGetUserInfo"> 授权登录 </button>
            </view>
        </view>
        <view v-else class="text-center">
            请升级微信版本
        </view>
    </view>
</template>
<script>
    export default {
        data() {
          return {
            sessionKey: '',
            openId: '',
            nickName: null,
            avatarUrl: null,
            userInfo:{},
            canIUse: uni.canIUse('button.open-type.getUserInfo'),
            canIGetUserProfile:false,
          };
        },
        onLoad() {
            var _this = this;
            //console.log(uni.getUserProfile);
            if( uni.getUserProfile ){  
                this.canIGetUserProfile = true;  
            }  
            //判断若是版本不支持新版则采用旧版登录方式
            //查看是否授权
            if( !this.canIGetUserProfile){  
                uni.getSetting({
                    success: function(res) {
                        if (res.authSetting['scope.userInfo']) {
                            uni.getUserInfo({
                              provider: 'weixin',
                              success: function(res) {
                                //console.log(res);
                                _this.userInfo = res.userInfo;
                                try {
                                  _this.login();
                                } catch (e) {}
                              },
                              fail(res) {}
                            });
                        } else {
                            // 用户没有授权
                            console.log('用户还没有授权');
                        }
                    }
                });
            }
        },
        onShow() {
            
        },
        methods: {
            //登录授权
            bindGetUserInfo(e) {
                var _this = this;
                if(this.canIGetUserProfile){
                    //新版登录方式
                    uni.getUserProfile({
                        desc:'登录',
                        success:(res)=>{
                            //console.log(res);
                            _this.userInfo = res.userInfo;
                            try {
                                _this.login();
                            } catch (e) {}
                        },
                        fail:(res)=>{
                            console.log(res)
                        }
                    });
                }else{
                    //旧版登录方式
                    if (e.detail.userInfo) {
                        //用户按了允许授权按钮
                        //console.log('手动');
                        //console.log(e.detail.userInfo);
                        _this.userInfo = e.detail.userInfo;
                        try {
                            _this.login();
                        } catch (e) {}
                    } else {
                        console.log('用户拒绝了授权');
                        //用户按了拒绝按钮
                    }
                }
            },
            //登录
            login() {
                let _this = this;
                // 获取登录用户code
                uni.login({
                    provider: 'weixin',
                    success: function(res) {
                        //console.log(res);
                        if(res.code){
                           let code = res.code;
                           //将用户登录code传递到后台置换用户SessionKey、OpenId等信息
                           //...写用code置换SessionKey、OpenId的接口
                            //置换成功调用登录方法_this.updateUserInfo();
                        }else{
                            uni.showToast({title: '登录失败!',duration: 2000});
                            console.log('登录失败!' + res.errMsg)
                        }
                  },
                });
            },
             //向后台更新信息
            updateUserInfo() {
                uni.showLoading({
                    title: '登录中...'
                });
                let _this = this;
                var params = {
                    openId: _this.openId,
                    nickName: _this.userInfo.nickName,
                    avatarUrl: _this.userInfo.avatarUrl,
                    gender: _this.userInfo.gender,
                    city: _this.userInfo.city,
                    province: _this.userInfo.province,
                    country: _this.userInfo.country,
                    unionId: '',
                }
                //console.log('登录');
                //...后台登录的接口
            }
        }
    }
</script>

 

posted @ 2021-07-09 11:30  BuildYourDream  阅读(1951)  评论(0编辑  收藏  举报