微信网页重定向之后,为什么重定向前的地址还存在还能退回重定向前的地址
if (!code) {
console.log('获取token,没有code去授权')
// 本地路径
let local = window.location.href
let appid = 'xxxxxxx'
// 不存在就打开下面的地址进行授权
window.location.replace('https://open.weixin.qq.com/connect/oauth2/authorize?appid=' +
appid +
`&redirect_uri=${encodeURIComponent(local)}&response_type=code&scope=snsapi_base&state=type#wechat_redirect`)
} else {
console.log('这里是有code的')
}