微信小程序实例:分享给一个人还是分享到群的判断代码

Posted 码蚁

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序实例:分享给一个人还是分享到群的判断代码相关的知识,希望对你有一定的参考价值。

微信小程序的分享功能,在最新版库的ide上已经不能拿到分享回调了,官方api也删除了对应的回调函数,看样子是砍掉了,不过真机测试还是可以的,话不多说,上代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
onLoad: function(options) {
    wx.showShareMenu({
            //只有拥有 shareTicket 才能拿到群信息,用户每次转发都会生成对应唯一的shareTicket 。
            withShareTicket: true
        });
},
onShareAppMessage: function(res) {
        var _this = this;
        console.log(res);
        if (res.from === ‘button‘) {
            // 来自页面内转发按钮
            _this.data.shareBtn = true;
        } else {
            //来自右上角转发
            _this.data.shareBtn = false;
        }
        return {
            title: ‘自定义转发标题‘,
            path: ‘pages/index/index‘,
            complete: function(res) {
                console.log(res);
                if (res.errMsg == ‘shareAppMessage:ok‘) {
                    //分享为按钮转发
                    if (_this.data.shareBtn) {
                        //判断是否分享到群
                        if (res.hasOwnProperty(‘shareTickets‘)) {
                            console.log(res.shareTickets[0]);
                            //分享到群
                            _this.data.isshare = 1;
                        } else {
                            // 分享到个人
                            _this.data.isshare = 0;
                        }
                    }
                } else {
                    wx.showToast({
                        title: ‘分享失败‘,
                    })
                    _this.data.isshare = 0;
                }
            },
        }
    }

以上是关于微信小程序实例:分享给一个人还是分享到群的判断代码的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序之web-view中的页面分享

分享一下微信小程序的实例

canvas微信小程序如何导入个人微信

微信小程序用户评分实例

微信小程序 - 分享功能

微信H5页面里面可以做一个按钮直接分享到朋友圈吗