uniapp h5页面打开app,没有下载则跳转下载

参考https://ask.dcloud.net.cn/article/409

if (navigator.userAgent.match(/(iPhone|iPod|iPad);?/i)) {
				                   var loadDateTime = new Date();  
				                   window.location = "test://abc";//schema链接或者universal link
				                   window.setTimeout(function() { //如果没有安装app,便会执行setTimeout跳转下载页
				                       var timeOutDateTime = new Date();
				                       if (timeOutDateTime - loadDateTime < 5000) {
				                           window.location = "https://www.xxxx.com/"; //ios下载地址  
				                       } else {
				                           window.close();
				                       }
				                   }, 2500);
				                   
				               } else if (navigator.userAgent.match(/android/i)) {
								   var loadDateTime = new Date();
								   window.location = "test://sb";//schema链接或者universal link
								   window.setTimeout(function() {//如果没有安装app,便会执行setTimeout跳转下载页
									   uni.hideLoading()
								       var timeOutDateTime = new Date();
								       if (timeOutDateTime - loadDateTime < 5000) {
										   uni.showModal({
										       title: '你还没下载app',
										       content: '是否前去下载app?',
										       success: function (res) {
										           if (res.confirm) {
										                window.location = "https://www.xxxx.com/"; //ios下载地址  
										           } else if (res.cancel) {
										               
										           }
										       }
										   });
								          
								       } else {
								           window.close();
								       }
								   }, 500);
				               }
在app.vue根据的值可进行页面跳转配置
 var args= plus.runtime.arguments;  
			    if(args){  
					if(args == 'test://sb') {
						uni.navigateTo({
							url: 'pages/mine/myCollection'
						})
					}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值