1. 程式人生 > 其它 >uniapp中App端跳轉微信小程式指定頁面並攜帶引數。

uniapp中App端跳轉微信小程式指定頁面並攜帶引數。

// APP端 調起微信小程式
                plus.share.getServices(
                    res => {
                        let sweixin = null;
                        for (let i in res) {
                            if (res[i].id == 'weixin') {
                                sweixin = res[i];
                            }
                        }
                        
//喚醒微信小程式 if (sweixin) { sweixin.launchMiniProgram({ id: 'gh_開頭', //微信開放平臺 --- 繫結的微信小程式的 --- 原始id type: 0, //小程式版本 0-正式版; 1-測試版; 2-體驗版。 path: '/pages/...?query傳參' //
小程式的頁面,用傳的引數在小程式接值判斷跳轉指定頁面 }); }else{ console.log("未安裝微信邏輯") } } );