Angular: conditional class with *ngClass

后端 未结 19 2412
醉话见心
醉话见心 2020-11-22 05:21

What is wrong with my Angular code? I am getting:

Cannot read property \'remove\' of undefined at BrowserDomAdapter.removeClass ...

19条回答
  •  天命终不由人
    2020-11-22 05:41

    In Angular 7.X

    The CSS classes are updated as follows, depending on the type of the expression evaluation:

    • string - the CSS classes listed in the string (space delimited) are added

    • Array - the CSS classes declared as Array elements are added

    • Object - keys are CSS classes that get added when the expression given in the value evaluates to a truthy value, otherwise they are removed.

    ...
    
    ...
    
    ...
    
    ...
    
    ...
    

提交回复
热议问题