Tuesday, 11 April 2017

Receiving POST data with Express.js sent by angular2 app

I have following code on Node.js:

app.post('/register', function(req, res) {
  console.log(req.body);

But it appears that req object does not have body property.

With angular2 I am sending stringified JSON with Content-Type:application/json

Thanks



via Maxim

No comments:

Post a Comment