私は、送信された JSON のみを解析する例を見つけることにうんざりしています。POST がフォームから来る例を見つけようとしています。
<form class="form-horizontal" role="form" action="/" method="post">
<input type="text" class="form-control" name="email" placeholder="your@email.here">
<input type="text" class="form-control" name="password" placeholder="password">
<button type="submit" class="btn btn-default">Sign in</button>
</form>
ご覧のとおり、フィールドemail
とpassword
. koa-router
Express スタイルのルーティングを誇るものを使用していますが、これは機能しません:
.post('/', function* () {
console.log(this.body.email); // <--- undefined
console.log(this.body.password);
})