Company logo
  • Jobs
  • Bootcamp
  • About Us
  • For professionals
    • Home
    • Jobs
    • Courses and challenges
    • Questions
    • Teachers
    • Bootcamp
  • For business
    • Home
    • Our process
    • Plans
    • Assessments
    • Payroll
    • Blog
    • Sales
    • Calculator

0

447
Views
Property ngClass is not provided by any applicable directives nor by div element

If i want to use ngClass, ngStyle or ngIf i get the following errormessage:

Error Message

My app.module.ts includes BrowserModule and CommonModule imports. And my Components are in the declarations.

I tried restart ng serve and npm install.

ngModule

Any Ideas how to fix this?

8 months ago · Santiago Trujillo
2 answers
Answer question

0

As you said, everything works fine when your project is builded/launched in your browser. So it's an issue with your IDE.

You have multiple solutions

  • update your Intellij, if it's already updated ...
  • ... invalidate your cache, if it's still doesn't work
  • delete your node module and recreate it (this fixed your issue here https://youtrack.jetbrains.com/issue/WEB-51326)
  • reinstall it/create new project
  • or ... switch to VSCode while Intellij is fixing your bug
8 months ago · Santiago Trujillo Report

0

You can add this <!--suppress ALL--> at the top of the page until Intellij solves this problem.

<!--suppress ALL-->
<button [ngStyle]="{'color': color}"></button>
<div [ngClass]="'first second'"></div>
8 months ago · Santiago Trujillo Report
Answer question
Find remote jobs