教你使用一套代碼解決出海問題

快應用海外不支持一些接口,好比 service.share ,怎麼在代碼裏判斷並屏蔽,又不影響國內版本的使用呢?api

解決方法:app

能夠先判斷下當前快應用中心華爲賬號的countryCode(如何獲取詳見:https://developer.huawei.com/...ui

app.ux代碼片斷以下:this

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:code

fastAppShare() {
      if (this.$app.$def.test()==='CN') {
        share.share({
          //此處爲三方分享內容
        })
      }
    }

原文連接:https://developer.huawei.com/...
原做者:Mayism接口

相關文章
相關標籤/搜索