微信小程序跳转关注公众号页面

/ 1评 / 0

记录一下微信小程序跳转公众号相关页面

*前提:小程序与公众号需关联(测试有效,正式上线无效..)

//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)
})

如有错误,欢迎留言纠正!
  1. 管理员说道:

    111

发表评论

您的电子邮箱地址不会被公开。