我试图根据数组中的变量(由* ngFor创建)在Angular2中动态添加CSS类。
使用此代码:
[ngClass]="['calendaractive': {{date.active}}, 'calendartoday': {{date.today}}']"
我收到错误:
Unhandled Promise rejection: Template parse errors:
Parser Error: Got interpolation ({{}}) where expression was expected at column 19 in [['calendaractive': {{date.active}}, 'calendartoday': {{date.today}}']]
我正在尝试以最有效的方式做到这一点。我这样做的最后一种方法包括手动创建列表而不使用* ngFor,然后运行if / else语句来添加类。