有没有一种方法可以循环遍历 observableArray 的索引,就像使用 C# 或 Java 等语言中的 for 循环一样?
使用下面的代码,我只是从第一个索引( 0 )中获取,但我希望能够遍历索引并在它们到来时从中获取值
<table class="table table-hover table-bordered table-condensed">
<thead>
<tr>
<th>
<input type="checkbox" data-bind="checked: SelectAll" value="0" />
</th>
<th>Employee Name</th>
<th>Sun</th>
<th>Mon</th>
<th>Tue</th>
<th>Wed</th>
<th>Thu</th>
<th>Fri</th>
<th>Sat</th>
</tr>
</thead>
<tbody data-bind="foreach: Items">
<tr>
<td>
<input type="checkbox" class="entity-id" data-bind="if: Timesheets()[0].RowID == 0, checked: IsChecked" />
</td>
<td><a class="span8" data-bind="if: Timesheets()[0].RowID == 0, text: EmployeeName, attr: { rowspan: Timesheets()[0].RowSpan }"></a>
</td>
<td><input type="text" class="span6" data-bind="value: Timesheets()[0].SundayHours"/>
</td>
<td><input type="text" class="span6" data-bind="value: Timesheets()[0].MondayHours" /></td>
<td><input type="text" class="span6" data-bind="value: Timesheets()[0].TuesdayHours"/></td>
<td><input type="text" class="span6" data-bind="value: Timesheets()[0].WednesdayHours"/></td>
<td><input type="text" class="span6" data-bind="value: Timesheets()[0].ThursdayHours"/></td>
<td><input type="text" class="span6" data-bind="value: Timesheets()[0].FridayHours"/></td>
<td><input type="text" class="span6" data-bind="value: Timesheets()[0].SaturdayHours"/></td>
</tr>
</tbody>
</table>
有没有办法通过淘汰赛做到这一点?