Another possible way to get empty request.body when you forget the name attribute from the input element...
<input type="text" /> /* give back empty request.body -> {}*/
<input type="text" name="username" /> /* give back request.body -> {"username": "your-input"} */