微信H5,判断是否在微信浏览器中打开(uniapp)
在app.vue里写上判断onShow: function() {var ua = navigator.userAgent.toLowerCase();var isWeixin = ua.indexOf('micromessenger') != -1;if (!isWeixin) {window.location.href = 'https://open.weixin.qq.com/connect
·
在app.vue里写上判断
onShow: function() {
var ua = navigator.userAgent.toLowerCase();
var isWeixin = ua.indexOf('micromessenger') != -1;
if (!isWeixin) {
window.location.href = 'https://open.weixin.qq.com/connect/oauth2/authorize?appid='+this.$appid; // 自己的appid
// 也可以跳转到自己写的错误页面
// uni.reLaunch({
// url:'/pages/address/address'
// })
}
console.log('App Show');
},
更多推荐



所有评论(0)