uniapp实现微信小程序分享功能

onLoad(options) {
	wx.showShareMenu({
		withShareTicket: true,
		//设置下方的Menus菜单,才能够让发送给朋友与分享到朋友圈两个按钮可以点击
		menus: ['shareAppMessage', 'shareTimeline']
	});
},
//转发分享
onShareAppMessage(res) {
	if (res.from === 'button') {
		// 来自页面内分享按钮
		console.log(res.target);
	}
	return {
		title: '', //分享的名称
		path: '/pages/index'
	};
},
//分享到朋友圈
onShareTimeline(res) {
	return {
		title: '',
		type: 0,
		summary: ''
	};
},

直接复制粘贴OK

猜你喜欢

转载自blog.csdn.net/weixin_46607967/article/details/130076036