// 分享
onShareAppMessage: function () {//小程序页面方法
return {
path: 'pages/mine/index/index' ,//分享跳转页面
success: function (res) {
console.log('转发成功')
},
fail: function (res) {
console.log('转发失败')
}
}
},
<button open-type="share" style="width:200rpx">//按钮分享需用到button组件
<view>去分享</view>
</button>
多个页面用到的话 可以自行组装方法 放在公共js里 在其他页面进行调用
网友评论