最佳答案
有没有可能在淘汰赛中获得一个观察对象的订阅内的当前值,然后再获得新的值?
例如:
this.myObservable = ko.observable();
this.myObservable.subscribe(function(newValue){
//I'd like to get the previous value of 'myObservable' here before it's set to newValue
});