KnockoutJS中的嵌套模板绑定

时间:2012-08-14 18:28:52

标签: jquery knockout.js templatebinding

好的,在我展示我的代码和我的方法让我解释手头的问题,也许有人有更好的解决方案。问题是我有一个按特定标准分组的数组列表。我需要为每个条件呈现一个列表/部分,每个部分都包含一个对象列表,这些对象也应该呈现为HTML。

我是KnockoutJS的新手 - 我昨天开始使用它。但考虑到手头的问题,我在文档中搜索了一个可观察的词典或类似的东西。幸运的是,我找到了ko.observableDictionary plugin。所以我认为这应该做的伎俩并编写以下代码(只是一些概念证明):

<div id="tiles-holder" data-bind="template: { name: 'tile-list', foreach: dictionary }">

</div>

<script type="text/html" id="tile-list">
<div class="md-auto-max-width">
    <div class="md-list-tiles md-auto-arrange-tiles" data-bind="template: { name: 'tile-default', foreach: items }"></div>
</div>
</script>

<script type="text/html" id="tile-default">
    <div class="metro-tile-square  md-list-item md-list-tile-large">
        <div class="md-list-item-image" data-bind="css: { defaultimage: $data.title() != 'architect' }"></div>

        <div>
            <span data-bind="text: name"></span> - <span data-bind="text: $data.department"></span>
        </div>

    </div>
</script>

<script type="text/javascript" src="@Url.Content("~/Scripts/metro/ko.observableDictionary.js")"></script>
<script type="text/javascript">

    $(function () {
        var viewModel = function TileViewModel() {
            var self = this;

            self.dictionary = new ko.observableDictionary();

            for (var i = 0; i < 15; i++) {
                self.dictionary.push("Developers", new employee('developer' + i, 'developer', 'projectDevelopment'));
                self.dictionary.push("Analysts", new employee('analyst' + i, 'analyst', 'business intelligence'));
            }
            self.dictionary.push("Architects",new employee('Some Architect', 'architect', 'Architecture and development'));



            function employee(name, title, department) {
                this.name = ko.observable(name);
                this.title = ko.observable(title);
                this.department = ko.observable(department);
            }
        };

        ko.applyBindings(new viewModel(), $('#tiles-holder').get(0));
    });
</script>

但我一直收到以下错误:

  

错误:无法解析绑定。消息:TypeError:$ data.title是   不是功能;绑定值:css:{defaultimage:$ data.title()!=   '建筑师'}

我认为问题是$data没有引用模板的数据上下文。但是我该如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

为什么首先使用字典,你没有将它用作字典,所以使用observableArray代替

无论如何,您需要访问每个项目的价值道具

http://jsfiddle.net/X2xZM/