对于第一个问题,有一种稍微优化的方法可以做到。 arg.sourceParent
包含在tasksByRoute
要删除的项目中。该remove
函数可以采用一个函数来针对项目运行。所以,你可以这样写:
self.afterMoveCallback = function(arg) {
if (arg.sourceParent().length === 0) {
self.tasksByRoute.remove(function(route) {
return route.tasks === arg.sourceParent;
});
}
};
对于第二个问题,我真的很喜欢使用一个扩展来自动跟踪 observableArray 中的顺序。它看起来像:
//track an index on items in an observableArray
ko.observableArray.fn.indexed = function(prop) {
prop = prop || 'index';
//whenever the array changes, make one loop to update the index on each
this.subscribe(function(newValue) {
if (newValue) {
var item;
for (var i = 0, j = newValue.length; i < j; i++) {
item = newValue[i];
if (!ko.isObservable(item[prop])) {
item[prop] = ko.observable();
}
item[prop](i); //add 1 here if you don't want it to be zero based
}
}
});
//initialize the index
this.valueHasMutated();
return this;
};
在您的情况下,您可以像这样使用它:
self.scheduledTasks = ko.observableArray([
new Task(8, 4, "Route 4", "Cust 8", 1),
new Task(9, 4, "Route 4", "Cust 9", 2),
new Task(10, 5, "Route 5", "Cust 10")
]).indexed("order");
以下是使用这两项更改更新的示例:http: //jsfiddle.net/rniemeyer/usVKQ/