wxshare.js 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. const wx = require("weixin-js-sdk");
  2. const wxShare = {
  3. /**
  4. * [wxRegister 微信Api初始化]
  5. * @param {Function} callback [ready回调函数]
  6. */
  7. wxRegister(data, option, successCb) {
  8. //data是微信配置信息,option是分享的配置内容
  9. wx.config({
  10. debug: false, // 开启调试模式
  11. appId: data.appId, // 必填,公众号的唯一标识
  12. timestamp: data.timestamp, // 必填,生成签名的时间戳
  13. nonceStr: data.nonceStr, // 必填,生成签名的随机串
  14. signature: data.signature, // 必填,签名,见附录1
  15. jsApiList: [
  16. "updateAppMessageShareData",
  17. "updateTimelineShareData",
  18. "onMenuShareAppMessage",
  19. "onMenuShareTimeline",
  20. ], // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
  21. openTagList: ["wx-open-launch-weapp"],
  22. });
  23. // wxef277996acc166c3
  24. wx.ready(function () {
  25. wx.updateAppMessageShareData({
  26. title: option.title, // 分享标题
  27. desc: option.desc, // 分享描述
  28. link: option.link, // 分享链接
  29. imgUrl: option.imgUrl, // 分享图标
  30. success() {
  31. successCb && typeof successCb == "function" && successCb();
  32. },
  33. cancel() {
  34. // 用户取消分享后执行的回调函数
  35. // option.error()
  36. console.log("cancel");
  37. },
  38. });
  39. });
  40. wx.error(function (res) {
  41. // config信息验证失败会执行error函数,如签名过期导致验证失败,具体错误信息可以打开config的debug模式查看,也可以在返回的res参数中查看,对于SPA可以在这里更新签名。
  42. //alert('error:'+JSON.stringify(res));
  43. });
  44. },
  45. };
  46. export default wxShare;