這篇文章將為大家詳細(xì)講解有關(guān)怎么在vue項(xiàng)目中使用微信分享插件,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。
吉林網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)!從網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、響應(yīng)式網(wǎng)站開發(fā)等網(wǎng)站項(xiàng)目制作,到程序開發(fā),運(yùn)營維護(hù)。創(chuàng)新互聯(lián)自2013年創(chuàng)立以來到現(xiàn)在10年的時(shí)間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)。
1.安裝weixin-js-sdk
npm install weixin-js-sdk
2.創(chuàng)建文件并引入
在src下創(chuàng)建common目錄
在common目錄下創(chuàng)建wxshare.js
3.在wxshare.js中編寫插件
import wx from 'weixin-js-sdk' import URL from '@/common/urlConfig' export const shareTitle = '測(cè)試'; export const shareUrl = '測(cè)試連接'; export const shareImg = '測(cè)試圖片'; export const shareDesc = '測(cè)試詳情'; /** *分享 * @param _this * @param shareTitle 標(biāo)題 * @param shareUrl 鏈接 * @param shareImg 圖片 * @param shareDesc 描述 */ export const commonShare = (_this, shareTitle, shareUrl, shareImg, shareDesc) => { let url = window.location.href; let data = { url: url }; _this.$axios.post(URL.vip.insertApplyRecord, data).then(res => { if (res.status == 1){ let data = res.data wx.config({ debug: false, // 開啟調(diào)試模式,調(diào)用的所有api的返回值會(huì)在客戶端alert出來,若要查看傳入的參數(shù),可以在pc端打開,參數(shù)信息會(huì)通過log打出,僅在pc端時(shí)才會(huì)打印。 appId: data.appId, // 必填,公眾號(hào)的唯一標(biāo)識(shí) timestamp: data.timestamp, // 必填,生成簽名的時(shí)間戳 nonceStr: data.nonceStr, // 必填,生成簽名的隨機(jī)串 signature: data.signature, // 必填,簽名,見附錄1 jsApiList: ["onMenuShareTimeline", "onMenuShareAppMessage"] // 必填,需要使用的JS接口列表,所有JS接口列表見附錄2 }); wx.ready(function () { wx.onMenuShareTimeline({ title: shareTitle, // 分享標(biāo)題 link: shareUrl, // 分享鏈接,該鏈接域名或路徑必須與當(dāng)前頁面對(duì)應(yīng)的公眾號(hào)JS安全域名一致 imgUrl: shareImg, // 分享圖標(biāo) success: function () { // 用戶確認(rèn)分享后執(zhí)行的回調(diào)函數(shù) // alert('分享成功?。?!'); }, cancel: function () { // 用戶取消分享后執(zhí)行的回調(diào)函數(shù) // alert('取消分享?。?!'); } }); wx.onMenuShareAppMessage({ title: shareTitle, // 分享標(biāo)題 desc: shareDesc, // 分享描述 link: shareUrl, // 分享鏈接,該鏈接域名或路徑必須與當(dāng)前頁面對(duì)應(yīng)的公眾號(hào)JS安全域名一致 imgUrl: shareImg, // 分享圖標(biāo) type: "", // 分享類型,music、video或link,不填默認(rèn)為link dataUrl: "", // 如果type是music或video,則要提供數(shù)據(jù)鏈接,默認(rèn)為空 success: function () { // 用戶確認(rèn)分享后執(zhí)行的回調(diào)函數(shù) // alert('分享成功?。?!'); }, cancel: function () { // 用戶取消分享后執(zhí)行的回調(diào)函數(shù) // alert('取消分享?。。?#39;); } }); }); } }) };
4.在需要分享頁面編寫
import {commonShare, shareTitle, shareUrl, shareImg, shareDesc} from "@/common/wxshare"; commonShare(this, shareTitle, shareUrl, shareImg, shareDesc);
關(guān)于怎么在vue項(xiàng)目中使用微信分享插件就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。