knockout.js计算数组在更改时不触发

时间:2013-02-21 23:11:35

标签: knockout.js computed-observable

我正在尝试使用MVC 4和Knockout.js中的计算observableArray创建一个可编辑的网格。在首次加载数组时会调用computed()方法,但在网格上的任何数据通过用户编辑进行更改时都不会调用。

ViewModel:

function CarsVm() {
var self = this;

self.url = 'http://localhost/FederatedWcf/Services/RestCars.svc/json/cars';

self.cars = ko.observableArray([]);

self.car = ko.computed(function () {
    if ( this.cars().length > 0)
        return this.cars()[this.cars().length-1].Make;
    else {
        return "";
    }
}, this);

self.GetCars = function () {
    var count = 0;
    $.getJSON(self.url, function (allData) {
        var mappedCars = $.map(allData.JsonCarsResult, function (item) {
            console.log(count);
            console.log(item);
            count = count + 1;
            return new Cars(item);
        });
        self.cars(mappedCars);
        console.log(self.cars());
    });
    $.ajaxSetup({ cache: false });
};

}

和html片段:

<table>
<thead>
    <tr>
        <th></th>
        <th>Year</th>
        <th>Make</th>
        <th>Model</th>
        <th></th>
    </tr>
</thead>
<tbody data-bind="foreach: cars">
    <tr>
        <td><span style="display:none" data-bind="text:Id"></span></td>
        <td><input data-bind="value:Year"></input></td>
        <td><input data-bind="value:Make"></input></td>
        <td><input data-bind="value:Model"></input></td>
        <td><button data-bind="click: $root.removeCar">-</button></td>
    </tr>
</tbody>
</table>
<span data-bind="text:car"></span>

如果我编辑网格中的最后一个Make,我希望数据绑定的car元素能够更新但不是。

如何检测网格上的更改,例如在onblur事件期间,在knockout observerableArray中?

2 个答案:

答案 0 :(得分:3)

确保将Cars中的每个属性标记为可观察或淘汰不会注意到它们已更改。

function Cars(data) {
   var self = this;
   self.Id = data.Id;
   self.Year = ko.observable(data.Year);
   self.Make = ko.observable(data.Make);
   self.Model = ko.observable(data.Model);
}

答案 1 :(得分:2)

这是因为当您更改cars中对象的属性时,observableArray不会观察到任何内容(它仍然包含相同的对象,对吗?)

要使其了解属性,必须使observableArray中的每个项本身都是可观察的。您可以使用当前映射函数中的挖出自己mapping plugin或手动使用ko.observable()来执行此操作。