我们在浏览网页的时候,你会看到一个网页下面漂浮着一个提示框“打开APP”或者“下载APP的字样”,如果你的手机已经安装过这个APP,那么网页会提示“打开APP”,如果没有安装,那就会提示“下载APP的字样” 这个从技术角度是如何去实现的呢?下面我给大家分享这块技术,去年公司给国际动漫节做项目的时候,客户就提到这个需求,在点击网页企业的时候 那么直接打开APP(如果已经安装了) 如果没有安装过,直接打开APP页面
下面我把这块的源码分享一下
01 | if (navigator.userAgent.match(/android/i)) { |
02 | // 通过iframe的方式试图打开APP,如果能正常打开,会直接切换到APP,并自动阻止a标签的默认行为 |
03 | // 否则打开a标签的href链接 |
04 | var isInstalled; |
05 | //下面是安卓端APP接口调用的地址,自己根据情况去修改 |
06 | var ifrSrc = 'AppProtocolHeader://camnpr? type=0&id=${com.id}&phone_num=${com.phone_num}' ; |
07 | var ifr = document.createElement( 'iframe' ); |
08 | ifr.src = ifrSrc; |
09 | ifr.style.display = 'none' ; |
10 | ifr.onload = function () { |
11 | // alert('Is installed.'); |
12 | isInstalled = true ; |
13 | alert(isInstalled); |
14 | document.getElementById( 'openApp0' ).click();}; |
15 | ifr.onerror = function () { |
16 | // alert('May be not installed.'); |
17 | isInstalled = false ; |
18 | alert(isInstalled); |
19 | } |
20 | document.body.appendChild(ifr); |
21 | setTimeout( function () { |
22 | document.body.removeChild(ifr); |
23 | },1000); |
24 | } |
25 |
26 | //ios判断 |
27 | if (navigator.userAgent.match(/(iPhone|iPod|iPad);?/i)) |
28 | if (navigator.userAgent.match(/(iPhone|iPod|iPad);?/i)) { |
30 | var isInstalled; |
31 | //var gz = '{"comName":"${com.short_name}","comID":"${com.id}","comPhoneNum":"${com.phone_num}","type":"0"}'; |
32 | //var jsongz =JSON.parse(gz); |
33 |
34 | //下面是IOS调用的地址,自己根据情况去修改 |
35 | var ifrSrc = 'AppProtocolHeader://?comName=${com.short_name}&comID=${com.id}&comPhoneNum=${com.phone_num}&type=0' ; var ifr = document.createElement( 'iframe' ); |
36 | ifr.src = ifrSrc; |
37 | ifr.style.display = 'none' ; |
38 | ifr.onload = function () { |
39 | // alert('Is installed.'); |
40 | isInstalled = true ; |
41 | alert(isInstalled); |
42 | document.getElementById( 'openApp1' ).click();}; |
43 | ifr.onerror = function () { |
44 | // alert('May be not installed.'); |
45 | isInstalled = false ; |
46 | alert(isInstalled); |
47 | } |
48 | document.body.appendChild(ifr); |
49 | setTimeout( function () { |
50 | document.body.removeChild(ifr); |
51 | },1000); |
52 | } |
53 | } |
大家在做的过程中需要注意两个问题:
1、接口地址一定要写对,大家可以查一下schema协议,通过这个协议调用的
2、在做用安卓的时候 如果用微信扫一扫或者QQ浏览器扫码功能的时候
使用上面的协议会存在问题的就是必须用APK上架到腾讯应用市场上去