Typescript/Angular2 http.post doesn't set headers Typescript/Angular2 http.post doesn't set headers typescript typescript

Typescript/Angular2 http.post doesn't set headers


You need to import the Headers class like this (you forgot it in your import from angular2/http):

import {  RequestOptions,  RequestMethod,  RequestHeaders,  RequestOptionsArgs,  Http,  Headers // <------} from 'angular2/http';// ...let headers = new Headers(),body = JSON.stringify({ identifier, password });

See this question for more details: