我在Angular v6中使用Angular Material。当我在HTML文件中使用它时。我收到这样的错误:
ERROR TypeError: _this._driver.validateStyleProperty is not a function
我的Angular Material模块的摘录:
MatFormFieldModule,
MatInputModule,
MatSelectModule
HTML用法:
<mat-form-field>
<mat-select placeholder="Select item">
<mat-option *ngFor="let x of data" [value]="x.value">
{{x.viewValue}}
</mat-option>
</mat-select>
</mat-form-field>
经过大量的谷歌搜索和RND之后,我尝试更改Angular Animations和Angular Material的版本。但这对我不起作用。
答案 0 :(得分:1)
更新角度材料将解决您的问题
ng update @angular/cli
ng update @angular/core
ng update @angular/material