<tr *ngFor="let item of _studentList">
<td align='center'>{{item.rollno}}</td>
<td align='center'>{{item.sname}}</td>
<td align='center'>
<input type='checkbox' style='height:15px; width:15px;' ng-checked="item.status=='P'" ></td>
如果学生Present
checbox
checked
Absent
unchecked
那么CloudFile.UploadFromStream(...)
我上面尝试了但是没有工作
怎么做?
答案 0 :(得分:6)
ng-checked
用于角度1而非角度2。
尝试
<input type='checkbox' style='height:15px; width:15px;' [checked]="item.status=='P'" >