场景: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
未完待续
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。