vue微信分享插件使用方法详解
本文为大家分享了vue微信分享插件的使用方法,供大家参考,具体内容如下
1.安装weixin-js-sdk
npminstallweixin-js-sdk
2.创建文件并引入
- 在src下创建common目录
- 在common目录下创建wxshare.js
3.在wxshare.js中编写插件
importwxfrom'weixin-js-sdk' importURLfrom'@/common/urlConfig' exportconstshareTitle='测试'; exportconstshareUrl='测试连接'; exportconstshareImg='测试图片'; exportconstshareDesc='测试详情'; /** *分享 *@param_this *@paramshareTitle标题 *@paramshareUrl链接 *@paramshareImg图片 *@paramshareDesc描述 */ exportconstcommonShare=(_this,shareTitle,shareUrl,shareImg,shareDesc)=>{ leturl=window.location.href; letdata={ url:url }; _this.$axios.post(URL.vip.insertApplyRecord,data).then(res=>{ if(res.status==1){ letdata=res.data wx.config({ debug:false,//开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId:data.appId,//必填,公众号的唯一标识 timestamp:data.timestamp,//必填,生成签名的时间戳 nonceStr:data.nonceStr,//必填,生成签名的随机串 signature:data.signature,//必填,签名,见附录1 jsApiList:["onMenuShareTimeline","onMenuShareAppMessage"]//必填,需要使用的JS接口列表,所有JS接口列表见附录2 }); wx.ready(function(){ wx.onMenuShareTimeline({ title:shareTitle,//分享标题 link:shareUrl,//分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致 imgUrl:shareImg,//分享图标 success:function(){ //用户确认分享后执行的回调函数 //alert('分享成功!!!'); }, cancel:function(){ //用户取消分享后执行的回调函数 //alert('取消分享!!!'); } }); wx.onMenuShareAppMessage({ title:shareTitle,//分享标题 desc:shareDesc,//分享描述 link:shareUrl,//分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致 imgUrl:shareImg,//分享图标 type:"",//分享类型,music、video或link,不填默认为link dataUrl:"",//如果type是music或video,则要提供数据链接,默认为空 success:function(){ //用户确认分享后执行的回调函数 //alert('分享成功!!!'); }, cancel:function(){ //用户取消分享后执行的回调函数 //alert('取消分享!!!'); } }); }); } }) };
4.在需要分享页面编写
import{commonShare,shareTitle,shareUrl,shareImg,shareDesc}from"@/common/wxshare"; commonShare(this,shareTitle,shareUrl,shareImg,shareDesc);
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持毛票票。
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。