因为支付回调返回的数据格式为XML数据格式,需要安装组件body-parser-xml
安装语法: npm install body-parser-xml --save
在app.js 文件中引入该模块 require('body-parser-xml')(bodyParser);
使用中间件:
app.use(bodyParser.xml({ limit: '2MB', // 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 } }));