获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
B站是怎么做到的有分享结果提示的
onShareAppMessage 怎么判断是否分享成功呢?success:function 方法没有办法监听分享成功事件呢, 想记录一下文章分享的次数 // 自定义分享 onShareAppMessage() { let _this = this; _this.share(); return { title: this.articleInfo.title, path: '/pagesA/articleDetail/articleDetail?id=' + this.articleInfo.id, imageUrl: this.articleInfo.image, success:function(res) { _this.share(); }, fail: function () { uni.showToast({ title: '分享失败', icon: 'none', duration: 2000 }); }, complete: function (c) { }, } },
07-09