我使用了角度为6的材质自举。在我的数据库中,我们有一条仅包含区号的记录。如果是这样,我只需要显示区号即可。在这里看起来像这样:
ZA550D-//带有小连字符
但是我需要它看起来像下面这样:
ZA550D
<mat-select formControlName="news" name="description" id="id" [(ngModel)]="model.newsId"
placeholder="{{'NewsName'}}" required>
<mat-option *ngFor="let news of newsDetails" [value]="news.id">
{{news.areaCode +"-"+news.areaDescription}}
</mat-option>
</mat-select>
答案 0 :(得分:2)
有很多方法可以执行此操作,请尝试以下示例:
lastLogon
您可以为此编写函数以获得更简洁的模板。