我在我的一個MVC項目中使用敲除綁定。foreach綁定只有一個元素在挖空
我想申請的foreach單
<table>
<thead>
<tr>
<th>MarginType</th>
@foreach (var discountGroup in Model.CustomerDiscountGroups)
{
<th>
@discountGroup.Code
</th>
}
</tr>
</thead>
<tbody data-bind="foreach: MarginTypes">
<tr>
<td data-bind="foreach:CustomerDiscountGroups">
<span data-bind="text:Code"> </span>
</td>
</tr>
</tbody>
我想用沒有customerdiscountgroups的重複第二次TD結合。
你還可以分享你想要的虛擬回覆嗎? –
重複「」或在同一個單元格內輸出每個「CustomerDiscountGroups」?無論哪種方式[我的例子](http://jsfiddle.net/origineil/c59vL/)都有。 – Origineil
謝謝..從你的例子,解決了我的問題 – user