<web-view :src="url"></web-view>
https://jobcrawler.cn/index.htmlhttps://jobcrawler.cn/index.html
url= "https://jobcrawler.cn/index.html"
h5主要的功能是做公众号授权使用
授权关键代码:
var code = this.getUrlParam('code') // 截取路径中的code,如果没有就去微信授权,如果已经获取到了就直接传code给后台获取openId
var local = window.location.href;
var APPID = 'wx1***********26';
if (code == null || 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=STATE#wechat_redirect'
} else {
this.getOpenId(code) //把code传给后台获取用户信息
}
大佬们,有人解决了没,同出现,没找到问题原因呢
解决了吗
用了五六台安卓手机都一个样