页面js中不写onShareAppMessage方法即可,点右上角单点就不能分享当前页面啦
如果想不允许右上角转发分享当前页面,又想在页面里点击按钮分享并且自定义分享的 title 和 imgUrl 呢
可以在onLoad里写
this.onShareAppMessage = (e)=>{
return {
title:‘xxxxxxxxxxxx’,
path:’/pages/xxxx/xxxx’,
imgUrl:‘xxxxxxxxxxxxxxxxxxx’
}
}
在页面wxml里写
<button open-type=“share”>分享</button> 即可