我在显示淘汰赛可观察数组中的项目时遇到问题。
下面的代码显示长度为 3(所以我知道有元素),但 foreach 不显示任何行。
<label data-bind="text: Data().length"></label>
<table>
<tbody data-bind="foreach: Data">
<tr>
<td >woot</td>
</tr>
</tbody>
</table>
的结果
<label data-bind="text: ko.toJSON(Data)"></label>
是:
[ { "Description" : null,
"DeviceId" : "fake1",
"DeviceType" : null,
"Policy" : null
},
{ "Description" : null,
"DeviceId" : "fake2",
"DeviceType" : null,
"Policy" : null
},
{ "Description" : null,
"DeviceId" : "fake3",
"DeviceType" : null,
"Policy" : null
}
]
非常感谢任何建议