码迷,mamicode.com
首页 > 微信 > 详细

vue项目history模式下微信分享相关问题

时间:2018-11-21 17:37:45      阅读:281      评论:0      收藏:0      [点我收藏+]

标签:color   The   imp   port   method   useragent   and   ESS   conf   

import wx from ‘@/utils/wx‘
import { shareApi } from ‘@/api‘

// 微信验证
export function requireConfig() {
  let url = window.location.href

  shareApi.share({
    url: url
  }).then(res => {
    if (res.code === 200) {
      wx.config({
        debug: false,
        appId: res.data.appid, // 必填,企业号的唯一标识,此处填写企业号corpid
        timestamp: res.data.timestamp, // 必填,生成签名的时间戳
        nonceStr: res.data.nonceStr, // 必填,生成签名的随机串
        signature: res.data.signature, // 必填,签名,见附录1
        jsApiList: [
          ‘onMenuShareTimeline‘,
          ‘onMenuShareAppMessage‘
        ]
      })
    }
  })
}

// 验证分享
export function requireShare(title, desc, link, imgUrl) {
  let u = navigator.userAgent
  // 安卓需要重新验证
  if (u.indexOf(‘Android‘) > -1) {
    requireConfig()
  }

  wx.ready(function() {
    // 分享给朋友
    wx.onMenuShareAppMessage({
      title: title, // 分享标题
      desc: desc, // 分享描述
      link: `http://share.tcm317.com${link}`, // 分享链接
      imgUrl: imgUrl, // 分享图标
      type: ‘‘, // 分享类型,music、video或link,不填默认为link
      dataUrl: ‘‘, // 如果type是music或video,则要提供数据链接,默认为空
      success: function() {
        // 用户确认分享后执行的回调函数
      },
      cancel: function() {
        // 用户取消分享后执行的回调函数
      }
    })
    // 分享给朋友圈
    wx.onMenuShareTimeline({
      title: title, // 分享标题
      link: `http://share.tcm317.com${link}`, // 分享链接
      imgUrl: imgUrl, // 分享图标
      success: function() {
        // 用户确认分享后执行的回调函数
      },
      cancel: function() {
        // 用户取消分享后执行的回调函数
      }
    })
  })
}

 

APP.vue

<template>
  <div id="app">
    <router-view/>
  </div>
</template>

<script>
import { requireConfig } from ‘@/utils‘

export default {
  data() {
    return {

    }
  },
  mounted() {
    requireConfig()
  },
  methods: {

  }
}
</script>

<style lang="scss">

</style>

需要分享的页面

  requireShare(
     ‘分享标题‘,
     ‘分享简介‘,
     ‘分享地址‘,
     ‘分享封面‘
   )

 

vue项目history模式下微信分享相关问题

标签:color   The   imp   port   method   useragent   and   ESS   conf   

原文地址:https://www.cnblogs.com/lanshengzhong/p/9995876.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!