您的当前位置:首页正文

uniapp完成微信小程序分享功能

2024-11-05 来源:个人技术集锦

官方文档

没有加代码之前

加入代码

onShareAppMessage(res) {
				if (res.from === 'button') { // 来自页面内分享按钮
					console.log(res.target)
				}
				return {
					title: 'wifi小程序',
					path: '/pages/index/index'
				}
			},

加入代码后

注意事项

其他触发分享的方式(按钮触发)

创建一个share.js文件

export default {
	data() {
		return {

		}
	},
	onLoad: function() {
		wx.showShareMenu({
			withShareTicket: true,
			menus: ["shareAppMessage", "shareTimeline"]
		})
	},
	onShareAppMessage(res) {
		let that = this;
		let imageUrl = that.shareUrl || '';
		if (res.from === 'button') {
		//这块需要传参,不然链接地址进去获取不到数据
			let path = `/` + that.$scope.route + `?item=` + that.$scope.options.item;
			return {
				title: '商品分享~',
				path: path,
				imageUrl: imageUrl
			};
		}
		if (res.from === 'menu') {
			return {
				title: '商店',
				path: '/pages/tabBarPro/index/index',
				imageUrl: imageUrl
			};
		}
	},
	// 分享到朋友圈
	onShareTimeline() {
		return {
			title: '商店',
			path: '/pages/index/index',
			imageUrl: '/1.jpg'
		};
	},
	methods: {

	}
}

在main.js中引入,挂载到全局

使用方式

<button open-type="share">分享<button>
显示全文