微信小程序邀请好友

"这篇博客介绍了如何在uniapp中利用<button>组件的open-type属性实现分享功能。通过设置`open-type="share"`,结合onShareAppMessage方法,可以自定义分享内容,包括分享的标题、路径及回调处理。当用户点击按钮时,会触发分享,并在成功或失败时打印相应的日志信息。"
摘要由CSDN通过智能技术生成

uniapp官方:https://uniapp.dcloud.io/component/button

1、使用btn触发

<button class="btn" open-type="share">立即邀请好友</button>

2、method

onShareAppMessage(res) {
			let item = {
				id: this.id,
				pid: this.infoList.user.id
			}
			console.log('id+++pid', item)
			return {
				title: '邀请好友助力',
				// path: '/pages/group_detail/group_detail?id=' + this.id + '?pid=' + this.infoList.user.id,
				path: '/pages/group_detail/group_detail?item=' + encodeURIComponent(JSON.stringify(item)),
				success: (res) => {
					// 转发成功
					console.log("转发成功:" + JSON.stringify(res));
				},
				fail: function(res) {
					// 转发失败
					console.log("转发失败:" + JSON.stringify(res));
				}
			}
		},

评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值