koa-xml-body 解析Koa的XML请求正文 安装 用法 const koa = require ( 'koa' ) const xmlParser = require ( 'koa-xml-body' ) const app = koa ( ) app . use ( xmlParser ( ) ) app . use ( function ( ctx , next ) { // the parsed body will store in this.request.body // if nothing was parsed, body will be undefin