uniapp 分享功能-分享给朋友群聊朋友圈效果(整理)

效果图:
在这里插入图片描述

<template>
	<button class="buttonBox posAbsolute" open-type="share">分享按钮</button>
</template>

wx.showShareMenu({
    
    	
	menus: ['shareAppMessage', 'shareTimeline']
});

//转发给朋友
onShareAppMessage(res) {
    
    
	return {
    
    
		title: "分享标题",
		path: "这是打开后的跳转路径", //这是打开后的跳转路径
		imageUrl: "分享图片"
	}
},
//转发朋友圈
onShareTimeline(res) {
    
    
	return {
    
    
		title: "分享标题",
		path: "这是打开后的跳转路径", //这是打开后的跳转路径
		imageUrl: "分享图片"
	}
},

猜你喜欢

转载自blog.csdn.net/qq_38881495/article/details/126163246