0

ノックアウト オブザーバブル アレイからアイテムを表示するのに問題があります。

以下のコードは長さ 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
  }
]

どんなアドバイスも大歓迎です

4

2 に答える 2