小程序跳转到另外一个小程序的设置
Posted chengmingxiaowu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序跳转到另外一个小程序的设置相关的知识,希望对你有一定的参考价值。
两个小程序关注一个公众号
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
}
}
以上是关于小程序跳转到另外一个小程序的设置的主要内容,如果未能解决你的问题,请参考以下文章
微信小程序页面跳转的问题(app.json中设置tarBar后wx.redirectTo和wx.navigateTo均不能实现跳转到指定的页面)