-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshare.js
70 lines (66 loc) · 2.62 KB
/
share.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
function myshare (url,desc,imgUrl,shareUserName,shareDesignName){
//分享功能
uni.request({
url:"http://***/vote/wx/wx", //后端接口,返回微信签名串的接口,即上面的Controller
method:'GET',
data:{
'url':url
},
success(res) {
console.log(res.data)
//转换为json对象
var result =res.data;
let param=window.location.href.split("#")[1];
//设置分享的标题
var title="我是:"+shareUserName+",我为***命名为:"+shareDesignName+",请为我投票";
let host=window.location.href.split("?")[0];
console.log("========host======"+host)
wxj.config({
debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId:result.appid, // 必填,公众号的唯一标识
timestamp: result.timestamp, // 必填,生成签名的时间戳
nonceStr: result.noncestr, // 必填,生成签名的随机串
signature: result.sgture,// 必填,签名
jsApiList: ["updateAppMessageShareData","updateTimelineShareData"] // 必填,需要使用的JS接口列表
/* 即将废弃 jsApiList: ["onMenuShareAppMessage","onMenuShareTimeline"] // 必填,需要使用的JS接口列表 */
});
wxj.ready(function () { //需在用户可能点击分享按钮前就先调用
wxj.updateAppMessageShareData({
title:title, // 分享标题
desc: desc, // 分享描述
link:"http://***/wxShare/redirect?host="+encodeURIComponent(host)+"¶m="+encodeURIComponent(param), // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
imgUrl:imgUrl, // 分享图标
success: function () {
//alert("分享成功")
// 设置成功
},
fail: function (res) {
//alert("分享失败")
},
cancel : function() {
// 用户取消分享后执行的回调函数
}
});
wxj.updateTimelineShareData({
title:title, // 分享标题
desc: desc, // 分享描述
link:"http://***/wxShare/redirect?host="+encodeURIComponent(host)+"¶m="+encodeURIComponent(param), // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
imgUrl: imgUrl, // 分享图标
success: function (res) {
console.log(res.data)
// 设置成功
},
fail: function (res) {
//alert("分享失败")
},
cancel : function() {
// 用户取消分享后执行的回调函数
}
})
});
}
})
}
export default{
myshare
}