微信小程序点击分享功能

[html部分]

< view class = "usermotto carDesc carDesc1">
< button class = 'share user-motto' id = "shareBtn" open-type = "share" hover-class = "other-button-hover">
{{motto}}
button >
view >


[js部分]

pages({

    

data: {
tempFilePaths: '' ,
motto: '分享给朋友' ,
userInfo: {},
hasUserInfo: false ,
canIUse: wx.canIUse( 'button.open-type.getUserInfo' )
},
//分享按钮函数
onShareAppMessage: function (ops) {
if (ops.from === 'button' ) {
// 来自页面内转发按钮
console.log(ops.target)
}
return {
title: 'XXX小程序' ,
path: 'pages/index/index' ,
success: function (res) {
// 转发成功
console.log( "转发成功:" + JSON.stringify(res));
},
fail: function (res) {
// 转发失败
console.log( "转发失败:" + JSON.stringify(res));
}
}

},

})

你可能感兴趣的:(微信小程序)