我有一个使用 Knockout.js ForEach.i 绑定的表,我使用 footable 来提高平板电脑和移动设备的响应性和兼容性。
<table>
<thead>
<tr>
<th>Service Date</th>
<th data-hide="phone">Code</th>
<th data-hide="phone">Start Date</th>
<tbody data-bind="foreach: myCollection">
<tr>
<td data-bind="text:ServiceDate"></td>
<td data-bind="text:Code"></td>
在大屏幕上我没有问题,但是当我重新调整页面扩展图标的大小时,我有这个错误:“未捕获的类型错误:无法读取 null 的属性‘名称’”我在这里找到了一些东西,但我不能还没解决我的问题。