我有以下代码:
/* Sample data received from an ASP.Net WebApi ajax call */
var data = { [{"CodSeguro":676541,"NroSeguro":538178},{"CodSeguro":687069,"NroSeguro":577836]},{"CodSeguro":123,"NroSeguro":233]};
/*This function build the view model that will be shared by multiple pages*/
function getViewModel(data)
{
return ko.mapping.fromJS(data);
}
var viewModel = getViewModel(data);
ko.applyBindings(viewModel);
我的 HTML 看起来像这样:
<table>
<thead>
<tr>
<th>CodSeguro</th>
<th>NroSeguro</th>
<th>NroEndoso</th>
</tr>
</thead>
<tbody data-bind="foreach: ">
<tr>
<td>
<span data-bind="text: CodSeguro"></span>
</td>
<td>
<span data-bind="text: NroSeguro"></span>
</td>
<td>
<span data-bind="text: NroEndoso"></span>
</td>
</tr>
只是我不知道在这一行的 foreach 之后要放什么:
我真的需要使用映射插件,因为我不想在这两个地方编写很多 ob 对象(用于淘汰的 js 和服务层中的 c#)
小提琴是这样的:
谢谢!!!