当前位置: 首页>编程语言>正文

01-微信支付流程对接方案

01-微信支付流程对接方案,01-微信支付流程对接方案_支付中心,第1张

1 支付文档

地址:

01-微信支付流程对接方案,01-微信支付流程对接方案_html_02,第2张

  • https://pay.weixin.qq.com/wiki/doc/api/micropay_sl.php?chapter=5_4
  • https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_5_4.shtml

2 Native 支付流程

01-微信支付流程对接方案,01-微信支付流程对接方案_html_03,第3张

3 支付中心商户订单

01-微信支付流程对接方案,01-微信支付流程对接方案_html_04,第4张

4 创建商户本地订单

前端:

export function createTradeOrder() {
    return request({
        url: '/tradeOrder/create',
        method: 'post'
    })
}

...

createTradeOrder()
    .then((response) => {
        var res = response.data;
        var orderNum = res;
        console.log("orderNum = " + orderNum);

https://www.xamrdz.com/lan/5a51941958.html

相关文章: