-
koa-bodyparser-ts:适用于TypeScript的koa-bodyparser
资源介绍
koa-bodyparser-ts
基于koa人体分析器。 支持json , form和text类型的身体。
安装
npm install koa-bodyparser-ts --save
用法
import * as Koa from "koa" ;
import bodyParser from "koa-bodyparser-ts" ;
const app = new Koa ( ) ;
app . use ( bodyParser ( ) ) ;
app . use ( async ctx => {
// the parsed body will store in ctx.request.body
// if nothing was parsed, body will be an empty object {}
ctx . body = ctx . request .