假设我想在不使用扩展程序的情况下将一个简单变量发布到Koa应用程序,我该怎么做?
答案 0 :(得分:4)
您必须使用官方koa-bodyparser
模块。
然后,所有POST
参数都将在this.request.body
中提供。
来自文档:
app.use(function *() {
// the parsed body will store in this.request.body
// if nothing was parsed, body will be an empty object {}
this.body = this.request.body;
});