1

我无法理解为什么此绑定设置不起作用。

我有一个带有 id 和名称的 Page 对象,我有一个 pendingBatchDocument,它带有一个可观察的 batchDocumentId 和一个可观察的页面。在我的视图模型中,我试图用 PendingBatchDocument 初始化一个可观察数组,并用它们的 Pages 数组初始化那些 PendingBatchDocument。

语法没有给我任何错误,所以我假设那里的设置没问题。让我知道它是否不正确。

我的问题是,为什么第二个 foreach 的绑定不起作用?

看法

<div data-bind="foreach: pendingDocs">
  <ul class="sortable" data-bind="foreach: pendingDocs().pages()">
  </ul>
</div>

Javascript 视图模型

function Page(id, name)
{
  this.id = ko.observable(id);
  this.name = ko.observable(name);
}

var PendingBatchDocument = function(batchDocumentId, pages)
{
  this.batchDocumentId = ko.observable(batchDocumentId);
  this.pages = ko.observableArray(pages);
};

var ViewModel = function()
{
  this.list1 = ko.observableArray([
    { itemId: "C1", name: "Item C-1" }, 
    { itemId: "C2", name: "Item C-2"}, 
    { itemId: "C3", name: "Item C-3"}, 
    { itemId: "C4", name: "Item C-4"}, 
    { itemId: "C5", name: "Item C-5"}, 
    { itemId: "C6", name: "Item C-6"}, 
    { itemId: "C7", name: "Item C-7"}]);

  this.pendingDocs = ko.observableArray([
    new PendingBatchDocument(1, [ 
      new Page(1, "Page 1"), new Page(2, "Page 2"), new Page(3, "Page 3") 
    ])
  ]);
};

ko.applyBindings(new ViewModel());

JSBin http://jsbin.com/ivavew/3/edit

4

1 回答 1

2

绑定内部的上下文foreach是单个数组元素,这意味着在内部foreach: pendingDocs,您已经可以访问PendingBatchDocument实例,因此您可以pages直接使用它的属性:

<div data-bind="foreach: pendingDocs">
    <ul class="sortable" data-bind="foreach: pages">
    </ul>
</div>
于 2013-07-02T22:06:01.217 回答