I don\'t understand what I am doing wrong, my server returns \"undefined\" when I try to get the json.
POST(url, data) { var headers = new Headers(),
The header should be
'Content-Type': 'application/json'
and
body: data
should be
body: JSON.stringify(data);