vue做微信分享朋友圈,发送朋友!

首先下载微信jssdk引入项目中,这里我就不说怎么去安装了,如果不会的可以看一下npm教程和es6的教程。

第一步,引入微信jssdk,此处我是通过下载微信jssdk,然后用webpack引入进项目的。

第二步,获取详情数据,渲染页面。

第三步,获取详情数据成功后再获取微信签名,token等配置信息。

第四步,通过api配置所想要的功能

代码:


<template>
  <div class="details">
    <player :videoUrl="details.videoUrl" :coverUrl="details.coverUrl" :videoId="details.videoId"/>
    <div class="description">
      <span class="label" :style="{backgroundColor: details.videoLabelColor}">{{details.videoLabel}}</span>
      <p class="title">{{details.videoTitle}}</p>
      <p class="info">
        <span>{{details.mtime}}</span>
        <i class="iconfont icon--"></i>
        {{details.videoPlayTimes}}
      </p>
      <p class="summary">简介</p>
      <p class="article ql-editor" v-html="details.videoDescription"></p>
    </div>
  </div>
</template>
<script>
import player from '@/components/player'
import { videoDtails, getApp } from '@/config/api'

/* eslint-disable no-undef */
export default {
  components: {
    player
  },
  data () {
    return {
      details: {},
      appId: '',
      signature: '',
      timestamp: '',
      nonceStr: ''
    }
  },
  beforeDestroy () {
    document.querySelector('.htmlTitle').text = 'title'
  },
  mounted () {
    // 获取详情数据let url = window.location.href.split("#")[0]
    this.$http.get(this, videoDtails, {videoId: this.$route.query.id}, res => {
      this.details = res
      document.querySelector('.htmlTitle').text = this.details.videoTitle
      this.$http.get(this, getApp, {url: url, refresh: true}, res => {
        this.appId = res.appId
        this.signature = res.signature
        this.timestamp = res.timestamp
        this.nonceStr = res.nonceStr
        this.shard(url)
      })
    })
  },
  methods: {
    shard (url) {
      wx.config({
        debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
        appId: this.appId, // 必填,公众号的唯一标识
        timestamp: this.timestamp, // 必填,生成签名的时间戳
        nonceStr: this.nonceStr, // 必填,生成签名的随机串
        signature: this.signature, // 必填,签名,见附录1
        jsApiList: ['onMenuShareTimeline', 'onMenuShareAppMessage'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
      })
      wx.onMenuShareTimeline({
        title: this.details.videoTitle, // 分享标题
        link: url+'#/...', // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
        imgUrl: this.details.coverUrl, // 分享图标
        success () {
          alert('分享朋友圈成功')
          // 用户确认分享后执行的回调函数
        },
        cancel () {
          // 用户取消分享后执行的回调函数
        }
      })

      wx.onMenuShareAppMessage({
        title: this.details.videoTitle, // 分享标题
        desc: this.details.videoTitle, // 分享描述
        link: url+'#/...', // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
        imgUrl: this.details.coverUrl, // 分享图标
        type: 'video', // 分享类型,music、video或link,不填默认为link
        dataUrl: this.details.videoUrl, // 如果type是music或video,则要提供数据链接,默认为空
        success: function () {
          alert('分享给朋友成功')
          // 用户确认分享后执行的回调函数
        },
        cancel: function () {
          // 用户取消分享后执行的回调函数
        }
      })
    }
  }
}
</script>
<style lang="less" scoped>
.details {
  overflow: hidden;
  .description {
    padding: 10px;
    .label {
      display: inline-block;
      padding:0 10px;
      height: 22px;
      line-height: 22px;
      color: #fff;
      font-size: 12px;
      text-align: center;
    }
    .title {
      line-height: 30px;
      font-size: 18px;
    }
    .info {
      line-height: 26px;
      color: #949494;
      span {
        margin-right: 15px;
      }
      .iconfont {
        font-size: 12px;
      }
    }
    .summary {
      margin-top: 20px;
      color: #4b4b4b;
      font-size: 16px;
    }
    .article {
      margin-top: 10px;
    }
  }
}
</style>

谢谢!


  • 0
    点赞
  • 13
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
Vue是一种流行的JavaScript框架,用于构建用户界面。它被设计为响应式的,可以轻松地与其他库或现有项目集成。微信公众号是一个基于微信平台的应用程序,允许用户在微信中浏览和使用各种功能。 要在Vue中实现微信公众号分享功能,你可以使用微信提供的JS-SDK。首先,你需要在微信公众平台上注册并获取到你的公众号的AppID。然后,在Vue项目中引入微信JS-SDK,并使用AppID初始化SDK。 接下来,你可以通过调用微信JS-SDK提供的接口来实现分享功能。例如,你可以使用`wx.ready`方法来监听微信准备就绪的事件,在事件回调函数中调用`wx.onMenuShareTimeline`和`wx.onMenuShareAppMessage`方法来设置分享的标题、链接、图标等信息。 下面是一个简单的示例代码: ```javascript // 引入微信JS-SDK import wx from 'weixin-js-sdk'; // 初始化微信JS-SDK wx.config({ appId: 'your_app_id', timestamp: 'your_timestamp', nonceStr: 'your_nonceStr', signature: 'your_signature', jsApiList: ['onMenuShareTimeline', 'onMenuShareAppMessage'] }); // 监听微信准备就绪事件 wx.ready(function() { // 设置分享朋友圈的信息 wx.onMenuShareTimeline({ title: '分享标题', link: '分享链接', imgUrl: '分享图标', success: function () { // 分享成功的回调函数 }, cancel: function () { // 取消分享的回调函数 } }); // 设置分享朋友的信息 wx.onMenuShareAppMessage({ title: '分享标题', desc: '分享描述', link: '分享链接', imgUrl: '分享图标', success: function () { // 分享成功的回调函数 }, cancel: function () { // 取消分享的回调函数 } }); }); ``` 以上代码只是一个简单的示例,你需要根据你的实际需求进行相应的配置和处理。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值