0

这是一个奇怪的问题,在互联网上搜索了一段时间后,我似乎也找不到任何参考资料。

我正在使用敲除将图像列表绑定到视图/编辑控件。

在这里我有我最初的尝试

    <!-- ko if: Position() == 'gal' -->
    <div class="editor-image">
        <!-- ko if: $parent.mode() == 'view' -->
        <a title="" class="view-image" data-bind="attr: { href : imagePath }">
        <!-- /ko -->

        <img data-bind="attr: { src : imageThumbnail }" />

        <!-- ko if: $parent.mode() == 'view' -->
        </a>
        <!-- /ko -->

        <!-- ko if: $parent.mode() == 'edit' -->
        <div>
            <a style="display: none;" class="ui-icon ui-icon-zoomin" title="View larger image" href="#">View larger</a>
            <a style="display: none;" class="ui-icon ui-icon-zoomout" title="View smaller image" href="#">View Smaller</a>
            <a class="ui-icon ui-icon-refresh" title="Delete this image" href="#">Delete image</a>
        </div>
        <!-- /ko -->
    </div>
    <!-- /ko -->

上面的代码在视图模式下添加了一个标签,然后在编辑模式下添加了控件,在这两种情况下,它都会包含在 img 标签中。奇怪的是 img src 绑定不起作用。但如果我执行以下操作

    <!-- ko if: Position() == 'gal' -->
    <div class="editor-image">
        <img data-bind="attr: { src : imageThumbnail }" />

        <!-- ko if: $parent.mode() == 'view' -->
        <a title="" class="view-image" data-bind="attr: { href : imagePath }">
        <!-- /ko -->

        <!-- ko if: $parent.mode() == 'view' -->
        </a>
        <!-- /ko -->

        <!-- ko if: $parent.mode() == 'edit' -->
        <div>
            <a style="display: none;" class="ui-icon ui-icon-zoomin" title="View larger image" href="#">View larger</a>
            <a style="display: none;" class="ui-icon ui-icon-zoomout" title="View smaller image" href="#">View Smaller</a>
            <a class="ui-icon ui-icon-refresh" title="Delete this image" href="#">Delete image</a>
        </div>
        <!-- /ko -->
    </div>
    <!-- /ko -->

我在这里所做的只是将 img 标签放在 if/endif if/endif 之外的顶部,并且绑定得很好。为了解决这个问题,我采取了

    <!-- ko if: Position() == 'gal' -->
    <div class="editor-image">
        <!-- ko if: $parent.mode() == 'view' -->
        <a title="" class="view-image" data-bind="attr: { href : imagePath }">
            <img data-bind="attr: { src : imageThumbnail }" />
        </a>
        <!-- /ko -->

        <!-- ko if: $parent.mode() == 'edit' -->
        <img data-bind="attr: { src : imageThumbnail }" />
        <div>
            <a style="display: none;" class="ui-icon ui-icon-zoomin" title="View larger image" href="#">View larger</a>
            <a style="display: none;" class="ui-icon ui-icon-zoomout" title="View smaller image" href="#">View Smaller</a>
            <a class="ui-icon ui-icon-refresh" title="Delete this image" href="#">Delete image</a>
        </div>
        <!-- /ko -->
    </div>
    <!-- /ko -->

我猜这是更少的代码,但它的重复代码。我现在很好奇为什么我的第一次尝试没有奏效。

4

1 回答 1

0

我猜淘汰赛会遍历 DOM,因此评论需要在 DOM 树中处于同一级别才能淘汰赛以匹配开始和结束评论。

以下节点表示结束注释在 DOM 中与开始注释处于不同级别:

<a href="#"><!-- comment 1 --></a><!-- end comment 1 -->

这是该标记的 DOM 树:

|-- A
|---- COMMENT
|-- COMMENT

..因此淘汰赛找不到结束评论标签。

在我看来,您的最后一个代码示例没有任何问题。如果您担心,您可以使用模板来减少代码重复。

于 2013-09-13T08:28:24.343 回答