使用jQuery模板和knockoutjs创建多列HTML表

时间:2011-09-14 18:37:17

标签: knockout.js jquery-templates

我有以下代码(也在jsfiddle中):

<table>
    <thead><tr><th>Equation</th><th>Equation</th></tr></thead>
<tbody data-bind="template: {name: 'equationTemplate', foreach: equations}"></tbody>
</table>

<script language="javascript" type="text/javascript">

</script>

<script type="text/x-jquery-tmpl" id='equationTemplate'>
    <!-- In here I want to be able to break it up into two 
    columns of two rather than one column of four-->
    <tr>
        <td>${first}+${second}=<input data-bind="value: answer"/></td>
    </tr>
</script>

有了这个JS:

$(document).ready(function () {

    var viewModel = {
        equations: ko.observableArray([
            { first: 1, second: 2, answer: 3 },
            { first: 4, second: 4, answer: 8 },
            { first: 10, second: 10, answer: 20 }, 
            { first: 5, second: 5, answer: 10}])
    };

    ko.applyBindings(viewModel);
});

如何修改模板以在两行两列的表中输出?方程10 + 10 = 20和5 + 5 = 10应出现在第二列中。

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:1)

一种选择是切换到{{each}}而不是模板绑定的foreach选项,以便您可以访问索引。使用{{each}}的缺点是,如果动态添加/删除任何方程式,您的模板将被完全重新渲染。

看起来像是:

<table>
    <thead><tr><th>Equation</th><th>Equation</th></tr></thead>
<tbody data-bind="template: { name: 'equationTemplate', foreach"></tbody>
</table>

<script type="text/x-jquery-tmpl" id='equationTemplate'>
    {{each equations}}
        {{if $index % 2 == 0}}<tr>{{/if}}
            <td>${first}+${second}=<input data-bind="value: answer"/></td>
        {{if $index % 2 == 1}}</tr>{{/if}}   
    {{/each}}
</script>

此处示例:http://jsfiddle.net/rniemeyer/QESBn/1/

另一种方法是构建一个dependentObservable,它表示映射到行/列的结构中的数据。

以下是一个示例:http://jsfiddle.net/rniemeyer/QESBn/2/