Home > Article > WeChat Applet > How to implement jumps between mini programs
Jump between WeChat mini-programs:
(Learning video sharing: Programming video)
1.
##
<navigator target="miniProgram" open-type="navigate" app-id="" path="" extra-data="" version="release">打开绑定的小程序</navigator>2. The following is an interface wx.navigateToMiniProgram(OBJECT)# that will be abandoned by WeChat officials
wx.navigateToMiniProgram({ appId: '', path: 'pages/index/index?id=123', extraData: { foo: 'bar' }, envVersion: 'develop', success(res) { // 打开成功 } })Related recommendations:
The above is the detailed content of How to implement jumps between mini programs. For more information, please follow other related articles on the PHP Chinese website!