koa中解析body的中间件,支持json
,form
,text
,可以用来获取post提交的数据
原生Node.js获取post提交的数据
1 | function parsePostData(ctx) { |
安装
1 | npm install --save koa-bodyparser |
使用
1 | const Koa = require('koa'); |
koa中解析body的中间件,支持json
,form
,text
,可以用来获取post提交的数据
1 | function parsePostData(ctx) { |
1 | npm install --save koa-bodyparser |
1 | const Koa = require('koa'); |