登录 注册
当前位置:主页 > 资源下载 > 10 > koa-bodyparser-ts:适用于TypeScript的koa-bodyparser

koa-bodyparser-ts:适用于TypeScript的koa-bodyparser

  • 更新:2024-06-09 19:14:50
  • 大小:63KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:Typescript - 前端
  • 格式:ZIP

资源介绍

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 .