角6在插值html中连接sabe对象的两个属性

时间:2018-12-30 17:04:39

标签: html angular typescript select interpolation

我想在一个选择选项中显示一个对象的两个属性,它们在带有“ if condition”的插值中:

这是我的物品数组

items =
[ 
  {  num: 0, name: 'john', description: 'some stuff' },
  {  num: 3, name: 'bob', description: 'some other stuff' },
  {  num: 0, name: 'peter', description: 'some stuff' },
  {  num: 9, name: 'charly', description: 'some stuff' }
 ]

这是我的html

<select class="form-control" 
                    [(ngModel)]="item_selec" name="item">
<option *ngFor="let item of items" [ngValue]="it">
{{item.num != 0 ? item.num item.name :'not available'}} // HERE if true i want to concat item.num and item.name...
</option>

</select>

所以问题出在选项标签中,我想在插值中连接项的编号和名称,以向用户显示此信息。这是在带有条件的插值表达式中,我该怎么做?非常感谢

0 个答案:

没有答案