Page({
onShareAppMessage:function(res){
if(res.from ==='button') {
// 来自页面内转发按钮
console.log(res.target)
}
return{
title:'自定义转发标题',
path:'/page/user?id=123', (定义为当前小程序内绝对路径,路径错误会导致显示app页面无法打开)
success:function(res){
// 转发成功
},
fail:function(res){
// 转发失败
}
}
}
})
通过给button组件设置属性open-type="share",可以在用户点击按钮后触发Page.onShareAppMessage()事件,如果当前页面没有定义此事件,则点击后无效果。相关组件:button
网友评论