我正在关注模板语法部分,以从这里https://v4.angular.io/guide/template-syntax#ngclass应用内置属性和结构指令
currentClasses: {};
setCurrentClasses() {
// CSS classes: added/removed per current state of component properties
this.currentClasses = {
'saveable': this.canSave,
'modified': !this.isUnchanged,
'special': this.isSpecial
};
}
根据上面的 Angular 文档,我将 currentClasses 添加到我的 html 中:
<div [ngClass]="currentClasses">This div is initially saveable, unchanged, and special</div>
在浏览器的控制台上,我收到以下错误:
错误:模板解析错误:无法绑定到“ngclass”,因为它不是“div”的已知属性。
我也尝试了 ngStyle 和 ngIf 但得到了相同的错误代码。
我的 app.module.ts 包括 Common Module 因为这是一些答案中建议的解决方案 - 但这对我没有帮助:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { AppComponent } from './app.component';
import { MaterialModule } from './material-module';
import { HighlightDirective } from './highlight.directive';
import { BrowserAnimationsModule } from '@angular/platform
browser/animations';
import { PlatformModule } from '@angular/cdk/platform';
import { BreakpointObserver, MediaMatcher } from '@angular/cdk/layout';
// import { MediaService } from './Media.service';
@NgModule({
declarations: [
AppComponent,
HighlightDirective
],
imports: [
CommonModule,
BrowserModule,
BrowserAnimationsModule,
MaterialModule,
PlatformModule
],
providers: [BreakpointObserver, MediaMatcher],
bootstrap: [AppComponent]
})
export class AppModule { }
在遵循对类似问题的其他一些答案之后,我无法独自完成这项工作。
我正在使用 Angular 4.4.6 和 webpack 进行编译。
非常感谢您的帮助。