Request body
To access the body of a request, use the @Body()
decorator.
import
{
Body
,
Controller
,
Post
}
from
'@nestjs/common'
;
@
Controller
(
'entries'
)
export
class
EntryController
{
@
Post
()
create
(
@
Body
()
body
:Entry
)
{
this
.
entryService
.
create
(
body
);
}
}