ng2 error - No provider for Http
This error is caused by, as you can guess, no Http provider in your ts/js file.
Here’s a screenshot of my error message.

How to fix this? By adding the http provider of course. It’s two lines of code.
import { HTTP_PROVIDERS } from '@angular/http';- add
HTTP_PROVIDERSto your provider list.
