小程序右上角点击发送给朋友(最简单版)
想要实现点击小程序右上角(如下所示)就可以将小程序分享给朋友其实非常简单
只需要在js中加入onShareAppMessage(),哪怕其中没有任何内容都可以使用分享(加入的位置与onLoad()同级),例如:
onShareAppMessage(){
}
如果要使用按钮点击分享的话就在按钮处加一个 open-type="share" 就可以了,例如:
<button open-type="share">分享</button>
想要实现点击小程序右上角(如下所示)就可以将小程序分享给朋友其实非常简单
只需要在js中加入onShareAppMessage(),哪怕其中没有任何内容都可以使用分享(加入的位置与onLoad()同级),例如:
onShareAppMessage(){
}
如果要使用按钮点击分享的话就在按钮处加一个 open-type="share" 就可以了,例如:
<button open-type="share">分享</button>