第一步: npm install weixin-js-sdk -S // (或者直接index.html裡面引入js文件 http://res.wx.qq.com/open/js/jweixin-1.6.0.js 官方文檔:https://developers.weixin.qq.com/doc/o ...
第一步:
npm install weixin-js-sdk -S // (或者直接index.html裡面引入js文件 http://res.wx.qq.com/open/js/jweixin-1.6.0.js
官方文檔:https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/JS-SDK.html
第二步:
import wx from 'weixin-js-sdk' // 喜歡的在main.js裡面把wx掛載到Vue下麵 Vue.prototype.$wx = wx
第三步:
// 找後臺獲取簽名,(拿簽名的介面只需要向後臺傳遞當前頁面的url就行了,其他參數更具業務自定,如果後臺找你要授權驗證的code,就讓他自己看文檔去) this.$store.dispatch('getAutographCode', {vm: this, devType: 'yanshi', url: window.location.href}).then(res => { if(res && res.data){ this.$wx.config({ debug: false, // 開啟調試模式,調用的所有api的返回值會在客戶端alert出來,若要查看傳入的參數,可以在pc端打開,參數信息會通過log打出,僅在pc端時才會列印。 appId: res.data.appId, // 必填,公眾號的唯一標識 timestamp: res.data.timestamp, // 必填,生成簽名的時間戳 nonceStr: res.data.noncestr, // 必填,生成簽名的隨機串 signature: res.data.signature, // 必填,簽名 jsApiList: ['onMenuShareTimeline', 'onMenuShareAppMessage'] // 必填,需要使用的JS介面列表 }) this.$wx.ready(() => { //需在用戶可能點擊分享按鈕前就先調用 console.log(this.$wx, 'readyreadyreadyreadyreadyreadyreadyready') this.$wx.onMenuShareTimeline({ title: this.title, // 分享標題 link: this.$serverPath, // 分享鏈接,該鏈接功能變數名稱或路徑必須與當前頁面對應的公眾號JS安全功能變數名稱一致 imgUrl: this.cover , // 分享圖標 success: () => { // 設置成功 } }) this.$wx.onMenuShareAppMessage({ title: this.title, // 分享標題 link: this.$serverPath, // 分享鏈接,該鏈接功能變數名稱或路徑必須與當前頁面對應的公眾號JS安全功能變數名稱一致 imgUrl: this.cover, // 分享圖標 success: () => { // 設置成功 } }) }); this.$wx.error(() => { //需在用戶可能點擊分享按鈕前就先調用 console.log(this.$wx, 'errorerrorerrorerrorerrorerrorerrorerror') }); } })
備註:上面的代碼調取成功後,微信那邊並不會彈出視窗讓選擇是分享朋友圈還是分享給好友,只是自定義了微信右上角三個點裡面的分享功能!!!