从公众号消息模板无法跳转到小程序指定页面
通过开发者工具的自定义编译模式,可以实现1043场景的跳转,但小程序发布后,从微信公众号点击消息模板,不能跳转到指定的页面,只能跳转到小程序的首页。请问需要怎么解决?
在onLauch已有相应的跳转逻辑
onLaunch: function (option) { if (option.scene==1043){ wx.redirectTo({ url: option.path + '?roomID=' + option.query.roomID + "&userID=" + option.query.userID + "&roomCreatorID=" +option.query.creatorID, }); } |