微信小程序 登录失效后处理

方法一、模态框

传送门

方法二、无痕登录

还是根据方法一的请求并发处理更改 直接修改

function success(res) {
    console.log(res, '我成功了')
    if (res.success) {
        return res
    } else {
        if (!res.success && res.errCode == "USER50001") {
            wx.removeStorage({
                key: 'Authorization',
            })
            wx.removeStorage({
                key: 'Cookie',
            })

            if (!getApp().globalData.isShowModel) {
                getApp().globalData.isShowModel = true
                // 过期方案一 模态框
                // wx.showModal({
                //     title: "提示",
                //     content: '登录已过期,请重新登录!',
                //     success: function (res) {
                //         if (res.confirm) {
                //             wx.reLaunch({
                //                 url: '/pages/login/index',
                //             })
                //             getApp().globalData.isShowModel = true

                //         } else if (res.cancel) {
                //             // console.log('用户点击取消');
                //             wx.reLaunch({
                //                 url: '/pages/login/index',
                //             })
                //             getApp().globalData.isShowModel = true
                //         }
                //     }
                // })
                // 方案二  无痕登录
                wx.login({
                    success: res => {
                        isLogin(res.code)
                    }
                })
            }
        } else {
            wx.showToast({
                icon: 'none',
                title: res.msg,
            })
        }

    }
}

function isLogin(code) {
    wx.request({
        url: '', // 线上
        method: 'post',
        data: {
            password: '',
            isAutoLogin: false,
            login_type: 'WECHAT_MINIAPP',
            grant_type: 'password',
            appId: "appid",
            code: code,
            username: '',
        },
        header: {
            "Content-Type": "application/x-www-form-urlencoded",
            'Cookie': '__wpkreporterwid_=20c31724-aeb1-4d85-0fa3-67166e6379cf; token=null',
            'Authorization': 'Basic eXVuc2E6eXVuc2E='
        },
        success: function (res) {
            if (res.data.success) {
                // 直接保存  token
                wx.setStorageSync('TaoLouToken', res.data.data.accessToken)
                // 获取当前页
                var page = getCurrentPages().pop();
                if (page == undefined || page == null) return;
                // 调用当前页的onload nShow 进行刷新   
                page.onLoad(page.options)
                page.onShow()
                // 延时 防止 多次请求  
                setTimeout(() => {
                    getApp().globalData.isShowModel = false

                }, 60000)
            }
        },
        fail: function (err) {
            console.log(err)
        }
    })
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值