在开发中,后端接收到请求参数后,需要解析参数。请求分为很多种类型,比如常见的get和post。
请求参数
Koa本身可以解析get请求参数,不能解析post请求参数。例如:
router.get('/api/get/userInfo', async (context) => {const {id} = context.request.query;context.body = `接口参数为:${id}`
});
在postman请求接口,如下图所示:
如果是post请求呢?先试一下,能不能这样解析。
定义一个简单的接口:
router.post('/api/update/userInfo', async (ctx) => {const {id} = ctx.request.body;ctx.body = `请求参数为:${id}`
})
用postman请求,接口没有报错,但是获取不到参数:
这就需要中间件koa-bodyparser来实现了,只需要在路由前注册就号:
// 注册bodyparser
app.use(bodyparser());