当前位置:   article > 正文

uniapp 打开App

uniapp 打开app
<template>
  <view class="content">
    <button type="primary" @tap="tapOpen">打开APP</button>
	<a href="testshop://params">打开APP</a>
  </view>
</template>

<script>
  export default {
    methods: {
      tapOpen() {
        let u = navigator.userAgent;
        var isWeixin = u.toLowerCase().indexOf('micromessenger') !== -1; // 微信内
        if (isWeixin) {
          alert('请在浏览器中打开')
          return false;
        }
        const platform = uni.getSystemInfoSync().platform;
        if (platform === 'ios') {
          this.ios()
        }
        if (platform === 'android') {
          this.android()
        }
      },

      ios() {
        uni.showLoading({
          title: '加载中...'
        });
        const currentTime = +(new Date());
        window.location.href = "testshop"; //找ios工程师要 UrlSchemes
        //启动间隔20ms运行的定时器,并检测累计消耗时间是否超过3000ms,超过则结束
        let _count = 0,
          timer;
        timer = setInterval(function() {
          _count++;
          const endTime = +(new Date()) - currentTime;
          if (_count >= 100 || endTime > 3000) {
            uni.hideLoading()
            clearInterval(timer);
            let hidden = window.document.hidden || window.document.mozHidden || window.document
              .msHidden || window.document.webkitHidden;
            if (typeof hidden == "undefined" || hidden == false) {
              //App store下载地址
              window.location.href = "https://ide.dcloud.net.cn/build/download/9cb7b510-98cc-11ee-80f8-818737b5217e"; //下载地址 可以直接跳转到appstore的
            }
          }
        }, 20);
      },
      android() {
        // uni.showLoading({
        //   title: '加载中...'
        // });
        // const currentTime = new Date().getTime();
        // window.location.href = "nftmall://"; //找android工程师要 UrlSchemes
		let ifr = document.createElement("iframe");
		ifr.src = "testshop://params";
		ifr.style.display = "none";
		document.body.appendChild(ifr);
        // 启动间隔20ms运行的定时器,并检测累计消耗时间是否超过2000ms,超时则结束
        // let _count = 0,
        //   timer;
        // timer = setInterval(() => {
        //   _count++;
        //   const endTime = new Date().getTime() - currentTime;
        //   if (_count >= 200 || endTime > 5000) {
        //     uni.hideLoading()
        //     clearInterval(timer);
        //     let hidden = window.document.hidden || window.document.mozHidden || window.document
        //       .msHidden || window.document.webkitHidden;
        //     if (typeof hidden == "undefined" || hidden == false) {
        //       //App store下载地址
        //       window.location.href = "https://ide.dcloud.net.cn/build/download/9cb7b510-98cc-11ee-80f8-818737b5217e"; //下载地址
        //     }
        //   }
        // }, 20)
      }
    }
  }
</script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81

*在manifest.json的"app-plus"->“distribute”->"android"节点下添加schemes数据:
“schemes” : “testshop”

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/281058
推荐阅读
相关标签
  

闽ICP备14008679号