淘汰foreach筑巢问题

时间:2014-10-15 20:35:03

标签: javascript knockout.js

我正在尝试使用两个视图模型的属性生成一个表,这两个视图模型是主视图模型的子视图模型,使用它来调用ko.applyBindings()。

我们的想法是为SubVM1中的每个元素生成一行,其中第一个单元格是元素的名称。然后,对于SubVM2中的每个元素,都会向该行添加一个附加单元格。

行正确生成,第一个单元格显示SubVM1名称,但后面只跟一个单元格,而不是SubVM2中有多个元素。

此外,data-bind中的函数也不起作用。我已经尝试将Value函数声明为SubV2的原型,但它错误地定义为未定义。

无论如何,我不确定的事情显然正在发生在绑定上下文中,并且将不胜感激。

<tbody  data-bind="foreach: {data: SubViewModel1, as: 'SubVM1'}">
    <tr>
        <td data-bind="text: SubVM1.Name" />
        <!-- ko foreach: {data: $root.SubViewModel2, as: 'SubVM2'} -->
            <td data-bind="text: Value(SubVM1.Type)"></td>
        <!-- /ko -->
    </tr>
</tbody>

编辑:部分完成jsfiddle:http://jsfiddle.net/jgr71o8t/1

1 个答案:

答案 0 :(得分:0)

我可以看到一些事情。 第一个是<td data-bind='' /> Knockout通常不喜欢自闭标签。始终使用结束标记,在本例中为<td data-bind=''></td>

第二个是你想在屏幕上更新的任何内容应该是ko.observable或ko.observableArray。 ko.applyBindings之后对属性的任何更改都不会反映在屏幕上

HTML

<table border="1">
    <tbody data-bind="foreach: {data: subViewModel1, as: 'SubVM1'}">
        <tr>
            <td data-bind="text: name"></td>
             <!-- ko foreach: {data: $root.subViewModel2, as: 'SubVM2'} -->
                <td data-bind="text: SubVM2.Value(SubVM1.Type)"></td>
            <!-- /ko -->
        </tr>
    </tbody>
</table>

JS Fiddle Demo with knockout bindings on all properties

function MasterViewModel() {
    var self = this;
    self.subViewModel1 = ko.observableArray([]);
    self.subViewModel2 = ko.observableArray([]);
}

function SubVM1ViewModel() {
    var self = this;
    self.name = ko.observable("Sub View Model 1");
    self.otherProperty = ko.observable(43);
}

function SubVM2ViewModel() {
    var self = this;
    self.title = ko.observable('Sub View Model 2');
    self.subVM1List = ko.observableArray([]);
}

SubVM2ViewModel.prototype.Value = function (type) {
    for (var i = 0; i < this.subVM1List().length; i++) {
        if (this.subVM1List()[i].Type === type) {
            return this.subVM1List()[i].name();
        }
    }
};

var masterVM = new MasterViewModel();

var subVM2 = new SubVM2ViewModel();
subVM2.subVM1List.push(new SubVM1ViewModel());

masterVM.subViewModel1.push(new SubVM1ViewModel());
masterVM.subViewModel2.push(subVM2);

ko.applyBindings(masterVM);

JS Fiddle Demo with straight javascript properties

function MasterViewModel() {
    var self = this;
    self.subViewModel1 = [];
    self.subViewModel2 = [];
}

function SubVM1ViewModel() {
    var self = this;
    self.name = "Sub View Model 1";
    self.otherProperty =43;
}

function SubVM2ViewModel() {
    var self = this;
    self.title = 'Sub View Model 2';
    self.subVM1List = [];
}

SubVM2ViewModel.prototype.Value = function (type) {
    for (var i = 0; i < this.subVM1List.length; i++) {
        if (this.subVM1List[i].Type === type) {
            return this.subVM1List[i].name;
        }
    }
};

var masterVM = new MasterViewModel();

var subVM2 = new SubVM2ViewModel();
subVM2.subVM1List.push(new SubVM1ViewModel());

masterVM.subViewModel1.push(new SubVM1ViewModel());
masterVM.subViewModel2.push(subVM2);

ko.applyBindings(masterVM);