需求:进入微信小程序内,可以直接关注公众号
1.小程序里面有公众号关注组件
废话不多说,先看效果图
图片来源网络
示例代码:
<official-account></official-account>
官方文档
https://developers.weixin.qq.com/miniprogram/dev/component/official-account.html
2.通过按钮添加点击事件直接跳转(webview形式)
//关注公众号
followBtn(){
let url = '微信公众号地址eg:https://mp.weixin.qq.com/mp/...?action=home&__biz=...==&scene=...#wechat_redirect';
var LinkUrl = encodeURIComponent(url);
let type = 'encodeUrl';
wx.navigateTo({
url: `../d_webview/d_webview?type=${type}&url=${LinkUrl}`
});
},