webview 嵌入h5 在安卓中报WeixinJSBridge exec time?ios 正常
<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传给后台获取用户信息 }