What is the reason for No provider for HTTP exception?
This exception is due to missing HttpClientModule in your module. You just need to import in module as below,
import { HttpClientModule } from '@angular/common/http';@NgModule({imports: [BrowserModule, HttpClientModule],declarations: [AppComponent],bootstrap: [AppComponent],})export class AppModule {}
July 19, 2022
140
Read more
What is Angular Framework?
November 04, 2022
AngularWhat is a Angular module?
November 03, 2022
AngularWhat are the steps to use animation module?
October 31, 2022
Angular