您當前位置>首頁 » 新聞資(zī)訊 » 小程序相關(guān) >
uni-app 跳轉支付寶小程序以及帶參
發表時間:2020-9-24
發布人:葵宇科技
浏覽次數:91
if(this.pepoplres.platform == 'ios') {
const query = encodeURIComponent('要帶的參數')
例如(rú):'?order_id=' + this.typeId + '&user_id=' + this.userId + '&api_type=getUserId'
plus.runtime.openURL("alipay://platformapi/startapp?appId=要跳轉的支付寶小程序appid&要跳轉的頁面" + 要帶的參數);
} else {
//這裡是安卓
const query = encodeURIComponent('要帶的參數')
plus.runtime.openURL("alipays://platformapi/startapp?appId=要跳轉的支付寶小程序appid&要跳轉的頁面" + 要帶的參數);
}