1.

这是写在vue中的一个点击按钮

 <div class="test">
          <button @click="test_test">测试</button>
 </div>
2.

这是写在methods中的一个方法,点击事件触发,先判断我们将要进入的环境是安卓还是iOS,

test_test() {
      // this.$toast.success("测试");
      const u = navigator.userAgent;
      const isAndroid = u.indexOf("Android") > -1 || u.indexOf("Adr") > -1; //android终端
      const isiOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); //ios终端
      if (isAndroid) {
        this.$toast.success("安卓");
        this.gotoNativeLogin();
        // window.androidProxy.showDialog("111");
      } else if (isiOS) {
        this.$toast.success("苹果");
      } else {
        this.$toast.success("失败");
      }
    },
3.如果是安卓环境触发该函数
 gotoNativeLogin(){
    // if (isiOS) {
    //     iOSFun(1);
    // }
    // if (isAndroid) {
        this.androidFun(1)
    },
4. 该函数去触发原生的方法,原生将h5需要的方法封装到一个对象中给h5,该函数中的androidProxy,就是原生给H5的方法对象,我们需要调用该对象中的showDialog方法,记得加window去调用
 androidFun(type, cb) {
      var params = { cb, type };
      var paramsStr = JSON.stringify(params);
      //跟安卓商量的名称
      window.androidProxy.showDialog(paramsStr);
    },
5.androidFun方法的参数有两个,一个是回调函数,一个是type类型,将参数传入到原生的方法中,当只有type并且type为1时得到一种结果,当同时又回调函数,并且type值为1时,又是另一种结果
未完待续。。。。
Logo

前往低代码交流专区

更多推荐