4

您好,我需要使用数组中的列(标题)和其他数组中的行构建动态表,数组中的第一列必须是静态的。

<table>
<thead>
<tr>
<th>Static</th>
<th>Dynamic 1</th>
<th>Dynamic 2</th>
<th>Dynamic 3</th>
</tr>
</thead>
<tbody>
<tr>
<th>Nam1</th>
<th>value</th>
<th>value</th>
<th>value</th>
</tr>
</tbody>
</table>

我有下一个 Knockout HTML 模型 allRoles 这是带有动态标题的数组

<table>
            <thead>
                <tr data-bind="template: { name: 'tableHeader', foreach: allRoles, as: 'role',afterRender: addFirstColumn } ">                                                  

                </tr>
            </thead>    
                <tbody data-bind="foreach: {data: userRoles,as:'dep'}">
                <tr>
                    <td>
                       <span data-bind="text: dep.name"></span>
                    </td>                   
                    <td data-bind="foreach: {data: dep.roles, as: 'role'}">
                       <span data-bind="text: role.id"></span>
                    </td>
                </tr>
                </tbody>
            </table>


<script type="text/html" id="tableHeader">
    <th data-bind="text: role.name">

    </th>
</script>

我如何添加静态?

4

2 回答 2

7

您可能正在寻找 Knockout 的无容器控制流语法。它看起来像这样:

<table>
    <thead>
        <tr>
            <th>Static</th>
            <!-- ko foreach: allRoles -->
                <th data-bind="text: name"></th>
            <!-- /ko -->
        </tr>
    </thead>
</table>

请参阅此处的注释 4 :http : //knockoutjs.com/documentation/foreach-binding.html

于 2013-04-19T16:25:52.390 回答
1

将您的绑定更改为:

<thead>
    <tr>                                                  
        <th>Static</th>
        <!-- ko  template: { name: 'tableHeader', foreach: allRoles, as: 'role',afterRender: addFirstColumn } -->
        <!-- /ko -->
    </tr>
</thead> 

这使用敲除描述为虚拟元素的东西来呈现您的foreach绑定,而无需父节点。

于 2013-04-19T16:25:22.683 回答