其他分享
首页 > 其他分享> > 微信公众号页面如何跳转至关注公众号页面

微信公众号页面如何跳转至关注公众号页面

作者:互联网

微信公众号页面如何跳转至关注公众号页面

1.获取微信公众号biz字段

a.点击公众号 历史文章,在浏览器中打开

b.鼠标右键,查看网页源代码

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-397KqjfP-1639799432742)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20211218113902133.png)]

c.复制红框的字段 即为biz字段

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-qcrekstm-1639799432743)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20211218114024387.png)]

2.拼接biz字段成完整跳转链接

替换红框中的内容即可

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-EtXtExU4-1639799432743)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20211218114327689.png)]

https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=Mzg2MjY4MzIyOA==#wechat_redirect

3.在代码中使用 window.location.href 进行跳转

jump(){
    let url = 'https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=Mzg2MjY4MzIyOA==#wechat_redirect';
    this.$tool.toast('正在跳转')
    window.location.href = url;
},

4.将网页打包放在服务器上,在手机微信客户端内点击进行访问

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-F1pxsb5o-1639799432744)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20211218114931411.png)]

一定要在手机微信客户端内访问,在浏览器和微信开发者工具都不可以,否则会是下图

[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-lxaCxdJd-1639799432745)(C:\Users\Administrator\AppData\Roaming\Typora\typora-user-images\image-20211218114849218.png)]

标签:微信,公众,biz,mp,跳转,页面
来源: https://blog.csdn.net/m0_52459016/article/details/122010420