Unable to get $http.post request data in Node.js res.body Unable to get $http.post request data in Node.js res.body angularjs angularjs

Unable to get $http.post request data in Node.js res.body


some ideas :

  • Maybe an URL error ? Make sure you aren't using a prefix like app.use('/api', router);
  • Look at the Content-Type :

application/x-www-form-urlencoded --> 'var1="SomeValue"&var2='+SomeVariableapplication/json;charset=UTF-8 --> {var1:"SomeValue", var2:SomeVariable}

  • You could use $http more explicitly :

$http({  url: '...',  method: 'POST',  headers: {    'Content-Type': 'application/x-www-form-urlencoded'  },  data: 'var1="SomeValue"&var2='+SomeVariable});