[JavaScript] 纯文本查看 复制代码 onShareAppMessage(res) { //res参数可判断该分享的事件源
if (res.from === 'button') { //当点击button时触发分享
}
if (res.from === 'menu') { //当点击右上角分享按钮时触发
}
return { //返回参数(必要的)
title: '标题', //标题
path: '/pages/index/index', //路径
imageUrl:'https://xxx' // 线上路径/本地路径
}
}
[JavaScript] 纯文本查看 复制代码 methods: {
shareFriend: function() {
//分享到VX朋友
uni.share({
provider: "weixin",
scene: "WXSceneSession",
type: 0,
href: "http:*******************",//这地址太长了,就省略了
title: "你笑起来真好看",
summary: "你有火吗?没有,为何你点燃了我的心?",
imageUrl: "http:*******************",
success: function(res) {
console.log("success:" + JSON.stringify(res));
},
fail: function(err) {
console.log("fail:" + JSON.stringify(err));
}
});
},
//分享到VX朋友圈
shareFriendcricle: function() {
uni.share({
provider: "weixin",
scene: "WXSenceTimeline",
type: 0,
href: "http:*******************",
title: "你笑起来真好看",
summary: "没有水的地方叫沙漠,没有你的地方,你知道叫什么吗?不知道。叫寂寞。",
imageUrl: "http:*******************",
success: function(res) {
console.log("success:" + JSON.stringify(res));
},
fail: function(err) {
console.log("fail:" + JSON.stringify(err));
}
});
}
}
|