微信浏览器不支持下载APP以及APK文件的 解决方案

需求:在微信h5页面中下载第三方app —— 安卓, 直接下载apk文件包;iphone,跳转AppStore




1、识别手机类型.1


/* 判断用户手机为安卓还是iphone */

checkPhone () {

let self = this

let agent = (navigator.userAgent || navigator.vendor || window.opera)

if (agent != null) {

let agentName = agent.toLowerCase()

if (/android/i.test(agentName)) {

self.isAndroid = true

} else if (/iphone/i.test(agentName)) {

self.isIOS = true

你可能感兴趣的:(微信浏览器不支持下载APP以及APK文件的 解决方案)