博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
vue 使用jssdk分享
阅读量:6246 次
发布时间:2019-06-22

本文共 2364 字,大约阅读时间需要 7 分钟。

背景

在vue中使用jssdk微信分享

weixin-js-sdk mint-ui需要安装npm install weixin-js-sdk mint-ui --save

mixins/wechat.js

//weixin-js-sdk应用const wx = require('weixin-js-sdk')import { Toast } from 'mint-ui'export default {  methods: {    wechatShare(info) {      // 判断苹果手机      let _url = ''      if (window.__wxjs_is_wkwebview === true) {        _url = window.location.href.split('#')[0] || window.location.href      } else {        _url = window.location.href      }      // 访问后台接口获取微信参数      this.$store        .dispatch('GetWxParam', { url: encodeURIComponent(_url) })        .then(res => {          wx.config({            debug: false,            appId: res.data.appId, // 必填,公众号的唯一标识            timestamp: res.data.timestamp, // 必填,生成签名的时间戳            nonceStr: res.data.nonceStr, // 必填,生成签名的随机串            signature: res.data.signature, // 必填,签名,见附录1            jsApiList: [              'previewImage',              'hideAllNonBaseMenuItem',              'showMenuItems',              'onMenuShareTimeline',              'onMenuShareAppMessage',              'chooseWXPay'            ] // 必填,需要使用的 JS 接口列表,所有JS接口列表见附录2          })        })        .catch(err => {          console.log(err)        })      wx.ready(() => {        const share_title = info.title        const share_desc = info.desc        const share_link = info.link        const share_img = info.img        wx.showOptionMenu()        wx.onMenuShareTimeline({          title: share_title, // 分享标题          link: share_link, // 分享链接          imgUrl: share_img, // 分享图标          success: function() {            Toast('已成功分享到朋友圈')          },          cancel: function() {            Toast('已取消分享')          }        })        wx.onMenuShareAppMessage({          title: share_title, // 分享标题          desc: share_desc, // 分享描述          link: share_link, // 分享链接          imgUrl: share_img, // 分享图标          success: function() {            Toast('已成功分享给您的朋友')          },          cancel: function() {            Toast('已取消分享')          }        })      })    }  }}

使用方法

import wxShare from '@/mixins/wechat' //引用
export default {

mixins: [wxShare], // methods: { setShare() {   const shareInfo = {      title: `羽绒服低至199元!`,      desc: `7月26日-8月3日,年中限时特惠,售完即止`,      link: window.location.href,      img: '.../logo.jpg'    }    // mixins    this.wechatShare(shareInfo)  },},created(){    // 设置    this.setShare()}}

转载地址:http://fnlia.baihongyu.com/

你可能感兴趣的文章
new begin
查看>>
List集合按Size分组
查看>>
windows下安装jandgo
查看>>
【译】你可以用GitHub做的12件 Cool 事情
查看>>
看图你就明白一个光棍的道理 [图片]
查看>>
ul宽度不固定,li的数量不定要保持居中???
查看>>
mysql多实例的作用和问题
查看>>
[置顶] ApplicationResources_zh_CN.properties乱码问题
查看>>
我的友情链接
查看>>
当寂寞不得不成为一种习惯
查看>>
oracle的序列号(sequence)
查看>>
MyEclipse启动tomcat发生Socket bind failed: [730048]
查看>>
树莓派连接到手机屏幕
查看>>
MyBatis学习整理0
查看>>
[转载]不再让你孤单
查看>>
登录验证的生成类RandomCodeRender
查看>>
singleton
查看>>
smarty插件判断图片是否存在,不存在则调用默认图片
查看>>
[转载] 晓说——第29期:海上霸主航母(上)
查看>>
05 显示网页信息
查看>>