文件名称:koa-xml-body:用于解析xml请求主体的koa中间件
文件大小:7KB
文件格式:ZIP
更新时间:2024-02-24 08:38:28
encoding middleware koa xml-parser koa2
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 undefined ctx . body = ctx . request . body return next ( ) } ) koa-xml-body会仔细检查并设定context.request.body ,因此它可与其他身体解析器如栅间以及koa-bodyparser : // ... const bodyParser = require ( 'koa-bodyparser' ) //
【文件预览】:
koa-xml-body-master
----.gitignore(28B)
----.eslintrc(348B)
----package.json(1KB)
----.travis.yml(154B)
----LICENSE(1KB)
----lib()
--------index.js(1KB)
--------xml-parser.js(1KB)
----readme.md(3KB)
----test()
--------index.js(8KB)
----.editorconfig(256B)