HttpModule vs. HttpClientModule -
For more detail kindly refer the link....
HttpClientModule
-
The HttpClientModule imported form -
import
{ HttpClientModule } from
'@angular/common/http';
NgModule which provides the HttpClient and
associated with components services and the interceptors can be added to the
chain behind HttpClient by binding them to the multi-provider for
HTTP_INTERCEPTORS.
HttpModule
–
Http deprecate @angular/http in favour of
@angular/common/http.
HttpModule imported from –
import
{ HttpModule } from
'@angular/http';
They both support HTTP calls but HTTP is the
older API and will eventually be deprecated.
The new HttpClient service is included in the
HttpClientModule that used to initiate HTTP request and responses in angular
apps. The HttpClientModule is a replacement of HttpModule.
For more detail kindly refer the link....