uni APP 怎麼打開支付寶小程序

uni  APP 怎麼打開支付寶小程序,直接上代碼

    // #ifdef   APP-PLUS
    uni.getSystemInfo({
      success(res) {
        if (res.platform == 'android') {
          var info = `alipays://platformapi/startapp?appId=xxxxx&page=lib/shop/dist/pages/index/index`;
          plus.runtime.openURL(info);
        } else {
          var info = `alipay://platformapi/startapp?appId=xxxxxx&page=lib/shop/dist/pages/index/index`;
          plus.runtime.openURL(info);
        }
      },
    });
    // #endif

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章