getCodes() { // 非静默授权,第一次有弹框
var local = window.location.href // 获取页面url
http.postList('', {}).then(res => {
if (res.code == 1) {
var appid = res.data;
if (this.code == null || this.code === '') { // 如果没有code,则去请求
window.location.href =
`https://open.weixin.qq.com/connect/oauth2/authorize?appid=${appid}&redirect_uri=${encodeURIComponent(local)}&response_type=code&scope=snsapi_userinfo&state=123&connect_redirect=1#wechat_redirect`
} else {
// 你自己的业务逻辑
// console.log('已授权')
}
}
})
},
getUrlCode() { // 截取url中的code方法
// console.log(22)
var url = location.search
this.winUrl = url
var theRequest = new Object()
if (url.indexOf("?") != -1) {
var str = url.substr(1)
var strs = str.split("&")
for (var i = 0; i < strs.length; i++) {
theRequest[strs[i].split("=")[0]] = (strs[i].split("=")[1])
}
}
return theRequest
}
获取微信code
最新推荐文章于 2025-04-24 17:46:29 发布