我正在尝试observableArray
用新内容替换项目的所有内容。
var oldLocation = ko.utils.arrayFirst(self.locations(), function (item) {
return item.id == value.id;
});
self.locations.replace(self.locations.indexOf(oldLocation), new location(value));
self.locations.valueHasMutated();
我也试过
self.locations[self.locations.indexOf(location)] = new fizi.ko.models.location(value);
但没有任何工作。正在正确检索索引,但没有更新项目。