Quantcast
Channel: CSDN博客移动开发推荐文章
Viewing all articles
Browse latest Browse all 5930

微信小程序开发(六)小程序支付notify_url

$
0
0

《微信小程序开发(五)小程序支付》里的微信支付里有一个notify_url(https://www.hgdqdev.cn/api/wxpay)。notify_url是位置支付成功后的一个通知地址:接收微信支付异步通知回调地址,通知url必须为直接可访问的url,不能携带参数。
这里存在一个问题就是怎么获取微信通知过来的数据。支付结果通知文档
这里写图片描述
具体实现
我的后台是node.js + express4;
1.添加依赖body-parser-xml,这个的使用看文档即可。
2.修改app.js

var express = require('express'),
bodyParser = require('body-parser');
require('body-parser-xml')(bodyParser);

var app = express();
app.use(bodyParser.xml({
  limit: '1MB',   // Reject payload bigger than 1 MB 
  xmlParseOptions: {
    normalize: true,     // Trim whitespace inside text nodes 
    normalizeTags: true, // Transform tags to lowercase 
    explicitArray: false // Only put nodes in array if >1 
  }
}));

3.接口实现

/*
 * 微信支付回调
 */
router.all('/api/wxpay', function(req, res, next) {
    var body = req.body;
    console.log(body);
});

4.返回结果
这里写图片描述

作者:zhuming3834 发表于2017/6/13 15:21:45 原文链接
阅读:22 评论:0 查看评论

Viewing all articles
Browse latest Browse all 5930

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>