基于vue-cli3开发微信公众号网页——调取微信分享,微信支付接口

第一步安装微信jdk

npm install weixin-js-sdk

第二步封装微信接口方法

//微信支付方法

import wx from "weixin-js-sdk";

/*

微信支付方法

获取微信加签信息

@param{data}:获取的微信加签

@param{cb}:成功回调

@param{errorCb}:失败回调

@param{share}:判断是否是调用分享的微信接口

*/

let wechatInterface = (data,cb,errorCb,share) => {

let appId = data.appId;

let timestamp = data.timestamp;

let nonceStr = data.nonceStr;

let signature = data.signature;

let packages = data.package;

let paySign = data.paySign;

wx.config({

debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。

appId: appId, // 必填,公众号的唯一标识

timestamp: timestamp, // 必填,生成签名的时间戳

nonceStr: nonceStr, // 必填,生成签名的随机串

signature: signature, // 必填,签名,见附录1

jsApiList: ['chooseWXPay',"updateAppMessageShareData"] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2

});

if(!share){

wx.ready(function(){

wx.chooseWXPay({

timestamp: timestamp, // 支付签名时间戳,注意微信jssdk中的所有使用timestamp字段均为小写。但最新版的支付后台生成签名使用的timeStamp字段名需大写其中的S字符

nonceStr: nonceStr, // 支付签名随机串,不长于 32 位

package: packages, // 统一支付接口返回的prepay_id参数值,提交格式如:prepay_id=***)

signType: 'MD5', // 签名方式,默认为'SHA1',使用新版支付需传入'MD5'

paySign: paySign, // 支付签名

success: function(res) {

// 支付成功后的回调函数

cb(res);

},

fail:function(res){

errorCb(res);

}

});

});

}else{

wx.ready(function(){

wx.updateAppMessageShareData({

title: '分享标题', // 分享标题

desc: '分享描述', // 分享描述

link: location.href, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致

imgUrl: 'https://zjkj-spx.oss-cn-hangzhou.aliyuncs.com/common/mr.png', // 分享图标

success: function (res) {

// 分享成功

console.log("分享成功");

},

fail:function(res){

errorCb(res);

}

})

})

}

wx.error(function(res) {

// config信息验证失败会执行error函数,如签名过期导致验证失败,具体错误信息可以打开config的debug模式查看,也可以在返回的res参数中查看,对于SPA可以在这里更新签名。

/*alert("config信息验证失败");*/

});

}

export default wechatInterface;

第三步,引入封装的微信接口方法

import wechatInterface from "../../servers/wechatInterface";

//使用微信支付

wechatInterface(

this.reqPay,

// 支付成功回调

() => {

console.log("支付成功页");

this.$router.push({path:"/paySuccess",query:{payType:this.payType}});

},

// 支付失败回调

() => {

this.$toast("支付失败,请重试");

},

share

);

//使用分享

wechatInterface(this.reqShare,

//分享成功回调

() => {

},

//分享失败回调

() => {},share);

});

你可能感兴趣的:(基于vue-cli3开发微信公众号网页——调取微信分享,微信支付接口)