记录一下微信小程序跳转公众号相关页面
*前提:小程序与公众号需关联(测试有效,正式上线无效..)
//web页面
<web-view src="{{webSrc}}"></web-view>
//js
data: {
webSrc:'https://mp.weixin.qq.com/mp/profile_extaction=home&__biz=${appid}==&scene=124#wechat_redirect'
},
onLoad: function (options) {
let webSrc = decodeURIComponent(options.webSrc);
this.setData({
webSrc
})
},
//page
//带网址跳转web页面
let url="https://mp.weixin.qq.com/mp/profile_extaction=home&__biz=${appid}==&scene=124#wechat_redirect";
wx.navigateTo({
url:'path?webSrc='+encodeURIComponent(url)
})
111