Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

express post body undefined

// If you are using Express 4.16+ you don't have to import body-parser anymore. 
// You can do it just like this:

app.use(express.urlencoded({extended: true}));
app.use(express.json()) // To parse the incoming requests with JSON payloads
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #express #post #body #undefined
ADD COMMENT
Topic
Name
6+9 =