首页 > 编程语言 >uniapp 微信小程序分享页面

uniapp 微信小程序分享页面

时间:2022-11-14 10:56:01浏览次数:36  
标签:uniapp .. 微信 share dataset student 分享 event 页面

<button open-type="share" v-bind:data-student="item" class="share">
分享
</button>

指定按钮的类型open-type="share"

分享需要的信息要使用v-bind:data-student传递,这里student是自己命名。

 

onShareAppMessage(event) {
console.log(event);
return {
title: event.target.dataset.student.username + "的测试报告",
path: "/pages_report/share/main/main?stuid=" +
event.target.dataset.student.stuid + "&tabIndex=1",
imageUrl: "../../../static/images/share/share_report.png",
}

}
},

标签:uniapp,..,微信,share,dataset,student,分享,event,页面
From: https://www.cnblogs.com/shuhan-hou/p/16888313.html

相关文章