Angular 2 http.post() is not sending the request

Since the post method of the Http class returns an observable you need to subscribe it to execute its initialization processing. Observables are lazy.

You should have a look at this video for more details:

Leave a Comment