我正在研究一个角度应用程序。在组件的 HTML 中,mat-select我试图使用 .trim() 方法删除 whiteapces,但我的应用程序正在中断。我的代码
<div class="col-2">
<mat-form-field>
<mat-select
placeholder="Source"
[(ngModel)]="applicable.SourceNm.trim()">
<mat-option
*ngFor="let source of applicableLevel.SourceListTxt.split(',')"
[value]="source">
{{source.trim()}}
</mat-option>
</mat-select>
</mat-form-field>
</div>
如果我删除 ngModel 中的 .trim(),则应用程序运行良好。我不确定在 ngModel 中使用 .trim() 有什么问题。我得到的错误是
Parser Error: Unexpected token '=' at column 32 in [applicableLevel.SourceNm.trim()=$event] in ng:///AdminModule/ConfigurationComponent.html@516:160 (" [ERROR ->][(ngModel)]="applicableLevel.SourceNm.trim()"
javascript网页格式有角度的打字稿
达令说
相关分类