uniapp微信支付

uniapp微信支付

1、uni.login 登录 拿到code值

// An highlighted block
var foo = 'bar';
uni.login({
	provider: 'weixin',
	success: function(loginRes) {
		let code = loginRes.code;
	}
});

2、发送code给后端进行授权

后端使用 GET https://api.weixin.qq.com/sns/jscode2session?appid=APPID&secret=SECRET&js_code=JSCODE&grant_type=authorization_code
参数:
let obj={
appid
secret
js_code
grant_tyoe
}
获取 openid 和 session_key

3、获取供应商,判断是否有微信供应商

// An highlighted block
var foo = 'bar';
uni.getProvider({
    service: 'oauth',
    success: function (res) {
        console.log(res.provider)
        if (~res.provider.indexOf('weixin')) {
         	
        }
    }
});

4、有此供应商,

let obj = {
openid: tthis.userInfo.openId,
};
前端发比如如上的数据给后端进行预下单接口,
后端操作接文档 https://pay.weixin.qq.com/wiki/doc/api/wxa/wxa_api.php?chapter=7_7&index=5
后端预下单处理
这里面要处理 prepay_id 和 paySign
处理 规范文档 https://pay.weixin.qq.com/wiki/doc/api/wxa/wxa_api.php?chapter=4_3
prepay_id
用统一下单接口 https://api.mch.weixin.qq.com/pay/unifiedorder获取
参数比如

let obj = {
	appid: wxd930ea5d5a258f4f,
	mch_id: 10000100,
	device_info: 1000,
	body: '5斤白菜',
	nonce_str: ibuaiVcKdpRxkhJA,
};
// 注意 数据要处理<xml>
let str1 = "",
let keys = Object.keys(obj).sort()//排序
keys.map((p) => {
	str1 += ` ${p} = {keys[p]}& `
})
str1 += "key = ' AAAAAAAAAAAAAAAA' "//自己去配置
let str2 = "",
str = md5.update(str).digest('hex').toUpperCase()
obj.sign = str1;
Object.keys(obj).map((p)=>{
	str += ` <${p}>${obj[p]</${p}> `
})
str = ` <xml>${str}</xml> `

// paySign
let obj = {
	appId
	timeStamp
	nonceStr
	package
	signType
};
paySign=MD5(appId=wxd678efh567hg6787&nonceStr=5K8264ILTKCH16CQ2502SI8ZNMTM67VS&package=prepay_id=wx2017033010242291fcfe0db70013231072&signType=MD5&timeStamp=1490840662&key=qazwsxedcrfvtgbyhnujmikolp111111) = 22D9B4E54AB1950F51E0649E8810ACD6

最后后端返回一个 prepay_id 和 paySign

5、进行前端

uni.requestPayment调用支付接口

//微信充值 //支付接口测试 function balance(url, data) { uni.request({ url: cfg.originUrl + '/wx/mp/js_sig.do', data: { route: url }, method: 'GET', success: (res) => { jweixin.config({ debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来 appId: res.data.appId, // 必填,公众号的唯一标识 timestamp: res.data.timestamp, // 必填,生成签名的时间戳 nonceStr: res.data.nonceStr, // 必填,生成签名的随机串 signature: res.data.signature, // 必填,签名 jsApiList: ['chooseWXPay'] // 必填,需要使用的JS接口列表 }); jweixin.ready(function() { uni.request({ url: cfg.originUrl + '/wx/recharge/pay.do', method: 'POST', header: { 'Content-type': "application/x-www-form-urlencoded", }, data: JSON.stringify(data), success: function(res) { alert("下单成功"); alert(JSON.stringify(res)); alert(res.data.order_id); all.globalData.orderId = res.data.order_id; uni.setStorageSync('orderId', res.data.order_id); jweixin.chooseWXPay({ timestamp: res.data.payParams.timeStamp, // 支付签名时间戳 nonceStr: res.data.payParams.nonceStr, // 支付签名随机串 package: res.data.payParams.package, // 接口返回的prepay_id参数 signType: res.data.payParams.signType, // 签名方式 paySign: res.data.payParams.paySign, // 支付签名 success: function(e) { alert("支付成功"); alert(JSON.stringify(e)); // 支付成功后的回调函数 } }); } }) }); jweixin.error(function(res) { // config信息验证失败会执行error函数,如签名过期导致验证失败,具体错误信息可以打开config的debug模式查看,也可以在返回的res参数中查看,对于SPA可以在这里更新签名。 console.log("验证失败!") }); } }) }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值
>