uniapp 微信小程序 列表点击分享 不同的信息

复制代码
<button open-type="share" plain class="item share" @click.stop="shareFn(item)">
		<text>分享</text>
</button>

	import {
		onShareAppMessage
	} from '@dcloudio/uni-app'
	
let shareObj = ref({})
  // 将点击后的分享设置信息  关键就是这个promise  resolve的结果就是分享的数据信息
	onShareAppMessage(() => {
		const promise = new Promise(resolve => {
			setTimeout(() => {
				resolve({
					title: '分享信息-'+shareObj.value.desc,
					desc: shareObj.value.desc,
					path: shareObj.value.path
				})
			}, 100)
		})
		return {
			promise
		}
	})
// 点击 设置分享信息  
	let shareFn = (item) => {
		console.log(item, 'item');
		shareObj.value.desc = item.lifeshareContent
		shareObj.value.path = '/pages/comment-detail/comment-detail?lifeshareId=' + item.lifeshareId
	}

这个是官网的信息

https://developers.weixin.qq.com/miniprogram/dev/platform-capabilities/miniapp/component/onShareAppMessage.html

结果

相关推荐
初遇你时动了情1 天前
uniapp/flutter中实现苹果IOS 26 毛玻璃效果、跟随滑动放大动画
flutter·ios·uni-app
gys98951 天前
uniapp使用sqlite模块
数据库·sqlite·uni-app
abigale031 天前
开发实战 - ego商城 -补充:使用uniapp扩展组件
uni-app·uni-ui
weixin_177297220691 天前
旧物二手回收小程序:引领绿色消费,开启时尚生活新方式
小程序·盲盒
2501_916007471 天前
Fastlane 结合 开心上架(Appuploader)命令行实现跨平台上传发布 iOS App 的完整方案
android·ios·小程序·https·uni-app·iphone·webview
爱喝水的小周1 天前
《UniApp 页面导航跳转全解笔记》
前端·uni-app
韩立学长1 天前
【开题答辩实录分享】以《植物病虫害在线答疑小程序的设计与实现》为例进行答辩实录分享
spring boot·小程序·vue
CV大师杨某1 天前
如何在uni-app中禁用iOS橡皮筋效果?
ios·uni-app
More more1 天前
uniapp实时查看在线监控,JessibucaMobile实现横屏播放
前端·javascript·uni-app·jessibucamobile
好想早点睡.1 天前
vue2+UniApp微信小程序集成高德地图
微信小程序·小程序·uni-app