Vue:A系统登录跳转到B系统主页,B系统免密登录
A系统登录跳转到B系统主页,B系统免密登录
·
A系统和B系统的登录用的是同一个接口,但是登录之后的主页内容不一样。
现在的要求是在A系统进行登录,然后直接跳转到B系统的home页面,B系统免密登录。
在A系统登录之后添加代码:
window.open('http://localhost:8080/home?token=' + this.$store.state.token)
然后再B系统的main.js添加代码去接收这个token
// 从网址获取token
let x = window.location.search.substring(1)
// 如果token存在就说明是从A系统跳转过来的
if (x) {
// 取“=”之后的token
let y = x.indexOf('=')
let z = x.substring(y + 1)
// 把token存进B系统
localStorage.setItem('token', z)
}
更多推荐
已为社区贡献1条内容
所有评论(0)