Vue 微信授权获取code信息

场景:Vue 微信商城页面
功能需求:前端请求code

微信后台相关设置都是后台同事设置好appid及ip白名单

Vue main.js 先设置路由拦截判断,未登录前往author.vue 页面进行授权

router.beforeEach((to, from, next) => {
    let code = () => {
        // 获取暂存的code信息
        return window.sessionStorage.getItem("weCode")
    }
    
    if(!code){
        if (to.path !== '/author') {
            // 暂存进入链接,以便获取code后返回
            window.localStorage.setItem('authUrl', to.fullPath)
            next("/author")
            return false
        }
    }
    
    next()
})

author.vue

    未完待续
    原文作者:__学
    原文地址: https://segmentfault.com/a/1190000018875882
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞