这篇文章将为大家详细讲解有关怎么在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);
关于怎么在vue项目中使用微信分享插件就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。