TypeError: Cannot read properties of undefined (reading 'x')

Viewed 16

I am new to MEAN stack, and trying to get some basic posts. I am getting TypeError: Cannot read properties of undefined (reading 'title') when issuing post. This works when changing todo-route.js from

title: req.body.title,

content: req.body.content

To

title: "SomeTextTitle",

content: "Some Content"

I have a disconnect on how the req body is passed to the post function

Index.js enter image description here

todo-route.js

enter image description here

todo-repo.js

enter image description here

1 Answers

I think you haven't parse your request body. Use body Parser if not using.

Related