skip to Main Content

Asp.net – angular – ERROR NullInjectorError: No provider for

I'm trying to list all the categories from my asp .net application, and im receiving this nullinjector error: ERROR NullInjectorError: R3InjectorError(_AppModule)[CategoriaServiceList -> CategoriaServiceList]: NullInjectorError: No provider for CategoriaServiceList! at NullInjector.get (core.mjs:5626:27) at R3Injector.get (core.mjs:6069:33) at R3Injector.get (core.mjs:6069:33) at ChainedInjector.get (core.mjs:15378:36)…

VIEW QUESTION

Javascript – I can't add the method by using addEventListner in Angular Project

getCheckStatus(checkStatus: string) { let statusClass = ''; if (checkStatus === 'Completed') { statusClass = 'mat-focus-indicator btn--primary__button mat-raised-button mat-button-base'; } else { statusClass = 'mat-focus-indicator mat-raised-button mat-button-base mat-button-disabled'; } const button = document.createElement('button'); button.className = statusClass; button.textContent = 'Close'; button.addEventListener("click", ()…

VIEW QUESTION
Back To Top
Search