3

我对 Knockout 非常(非常!)新手,希望您能就以下问题为我指明正确的方向。

我有一个我在jsFiddle上寻找的最终结果的例子

最终,我希望在绑定到价格(将动态加载)的表格行中有多个复选框。行中的最后一个单元格将保存已选择的所有价格的平均值(已选中复选框)。

这是我对 ViewModel 的了解:

//--Page ViewModel

//--Set the structure for the basic price object
function Price(quote) {
  this.quote = ko.observable(quote);
}

//--Sets the structure for the contract month object
//--This includes the month, and array of Price and an average
function ContractMonthPrices(month, prices) {
  this.month = month;
  this.prices = $.map(prices, function(quote) { return new Price(quote); });

  this.average = ko.computed(function() {
      var total = 0;
      for(var i = 0; i < this.prices.length; i++)
        total += this.prices[i].quote();
      return total;
  }, this);
}

我知道这可能没用,但任何帮助将不胜感激!

谢谢!

4

1 回答 1

3

假设您的源数据如下所示,我稍微修改了您的小提琴:

var allPrices = [
    { month: 'January', prices: [ 3, 4, 4, 4 ] },
    { month: 'February', prices: [ 7, 8, 2, 3 ] },
    { month: 'March', prices: [ 7, 8, 2, 1 ] }
];

http://jsfiddle.net/2Ccvk/5/

我已经用完整的数据绑定完全重写了你的标记。

为了获得average计算的可观察工作,我已将selected道具添加到您的每个价格中:

function Price(quote) {
    this.quote = ko.observable(quote);
    this.selected = ko.observable(true); // bound to checkbox in markup
}

还对您的代码进行了许多更改和修复。

PS 我已经改成$.mapko.utils.map因为 KO 有自己的方法来执行常见的数组操作。如果需要,您可以安全地继续使用 jQuery 方法。

于 2013-05-16T17:23:34.223 回答