兩個小程序關注一個公衆號
wx.navigateToMiniProgram({
appId: 'xxxxxxxxxxxxxxxxxx', // 要跳轉的小程序的appid
path: '', // 跳轉的目標頁面,不填,默認到小程序首頁
extarData: {
},
success(res) {
// 打開成功
}
})
在app.json頁面配置信息
"navigateToMiniProgramAppIdList": [
"xxxxxxxxxxxxxxxxxx" //要跳轉的小程序的appid
],
若是用的uni-app框架則在manifest.json中源碼視圖裏面設置
"mp-weixin": {
/* 小程序特有相關 */
"navigateToMiniProgramAppIdList": [
"xxxxxxxxxxxxxxxxxx" //要跳轉的小程序的appid
],
"usingComponents": true,
"appid": "wx431bbfcb73b30b14",
"setting": {
"urlCheck": false,
"postcss": true,
"es6": true,
"minified": true
}
}