Quantcast
Channel: CNode:Node.js专业中文社区
Viewing all articles
Browse latest Browse all 14821

如何在koa-router中使用body-parser

$
0
0
const Koa = require('koa');
const app = new Koa();
const router = require('koa-router')();
const bodyParser = require('koa-bodyparser');

app.use(router.routes());
app.use(bodyParser());

router.post('/test', async function (next) {
    this.body = this.request;
    console.log(`我是router中的=====> ${JSON.stringify(this.request.body)}`);
});

app.use(async ctx=> {
    console.log(`我不是router中的=====> ${JSON.stringify(ctx.request.body)}`);
    ctx.body = ctx.request.body;
});

app.listen(3000);

//打印结果
我不是router中的=====> {"tt":"11"}
我是router中的=====> undefined
使用postman测试
/**
	"koa": "^2.1.0",
    "koa-bodyparser": "^4.1.0",
    "koa-router": "^5.4.0"
*/


Viewing all articles
Browse latest Browse all 14821

Trending Articles