关于android:教你使用一套代码解决出海问题

45次阅读

共计 614 个字符,预计需要花费 2 分钟才能阅读完成。

快利用海内不反对一些接口,比方 service.share,怎么在代码里判断并屏蔽,又不影响国内版本的应用呢?

解决办法:

能够先判断下以后快利用核心华为帐号的 countryCode(如何获取详见:https://developer.huawei.com/…

app.ux 代码片段如下:

data: {localeObject: ''},
    test() {
      device.getServiceCountryCode({success: function (ret) {
          this.localeObject = ret.serviceCountryCode
          console.log(ret.serviceCountryCode);
        },
        fail: function (erromsg, errocode) {
          this.localeObject = 'errocode:' + errocode + ',erromsg:' + erromsg
          console.log(erromsg, errocode);
        },
        complete: function () {}
      })
      return this.localeObject
    }

页面 ux 中调用 service.share:

fastAppShare() {if (this.$app.$def.test()==='CN') {
        share.share({// 此处为三方分享内容})
      }
    }

原文链接:https://developer.huawei.com/…
原作者:Mayism

正文完
 0