1 回答
TA贡献1821条经验 获得超6个赞
您可以尝试使用管道进行修整
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
name: 'trim',
pure: false
})
export class TrimPipe implements PipeTransform {
transform(value: string): any {
return value.trim()
}
}
在 html 中 {{source | trim }}
不要忘记添加app.modules declarations此管道。
ngModel分配给参数不起作用。所以你需要删除trim()并使ngModel你的value修剪
<div class="col-2">
<mat-form-field>
<mat-select
placeholder="Source"
[(ngModel)]="applicable.SourceNm">
<mat-option
*ngFor="let source of applicableLevel.SourceListTxt.split(',')"
[value]="source | trim">
{{source | trim }}
</mat-option>
</mat-select>
</mat-form-field>
</div>
添加回答
举报