微信中怎么打开apk下载链接 微信浏览器不支持下载怎么解决

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


1、识别手机类型:

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

checkPhone () {

letself =this

letagent = (navigator.userAgent || navigator.vendor ||window.opera)

if(agent !=null) {

letagentName = agent.toLowerCase()

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

self.isAndroid =true

}elseif(/iphone/i.test(agentName)) {

self.isIOS =true

        }

你可能感兴趣的:(微信中怎么打开apk下载链接 微信浏览器不支持下载怎么解决)