微信支付回撥取不到body體中的資訊node.js

李路平發表於2017-06-16

因為支付回撥返回的資料格式為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
  }
}));

 

相關文章