2

处理我的第一个严肃的本机绑定模板,并且正在制作一个明显的语法错误。问题部分如下 -

<tr class="knockoutGrid-header">
    <!-- ko foreach: columns -->
    <th class="ui-widget-header">
        <!-- ko if:  !$data.NoSort  -->
        <button onclick='viewModel.gridViewModel.SortColumn("$data.rowText", $index)' class='GridSortWrapper'
            title='Click to Sort Column'>
            <div style="display: table">
                <div style="display: table-row">
                    <div class="ClearFix">
                    </div>
                    <div style="display: table-cell; vertical-align: middle; width: 100%;">
                        <label data-bind="text: headerText" />
                    </div>
                    <div style="display: table-cell; vertical-align: middle; width: 18px">
                        <span class='ui-icon $data.iconCss  iconBackground sortIcon'></span>
                    </div>
                    <div class="ClearFix">
                    </div>
                </div>
            </div>
        </button>
        <!-- /ko -->
        <!-- ko if:  $data.NoSort   -->
        <label data-bind="text: headerText" />
        <!-- /ko -->
    </th>
    <!-- /ko -->
</tr>

我收到以下错误

未捕获的错误:找不到要匹配的结束注释标记:ko if:$data.NoSort

我正在使用淘汰赛 2.1RC

4

1 回答 1

5

看起来你的问题在这里:<label data-bind="text: headerText" />

它应该是: <label data-bind="text: headerText"></label>

于 2012-04-28T13:13:27.323 回答