根据If条件,我想在angular2中根据需要创建字段

时间:2017-08-18 17:22:51

标签: angular2-template angular2-forms angular2-directives

 <div *ngFor="let proc of procInputList" >
         <label >{{proc.key_ | Capitalize}}</label>
   <input id="{{proc.key_}}" name="inputparams" type ="text" class="form-control" required = "proc.r_q == Y ? required :none"  />
</div>

但不幸的是,它不适合我..而且我不想在那里使用表格。

1 个答案:

答案 0 :(得分:2)

要确定属性,您可以:

<input class="form-control" [required] = "proc.r_q == 'Y'"  />