安装

1
npm install koa-bodyparser

使用

1
2
3
4
5
6
7
8
9
const bodyParser = require('koa-bodyparser');
app.use(bodyParser());
router.post('/getTxt', async (ctx) => {
const body = ctx.request.body;
console.log(body) // 获取来的参数在这里
ctx.status = 200;
ctx.body = 'abc';
});