您的位置:首页 > 移动开发 > 微信开发

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

2019-03-08 18:07 405 查看

需求:在微信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

 

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐