ノックアウトで、新しい値を受け取る前に、そのオブザーバブルへのサブスクリプション内のオブザーバブルの現在の値を取得することは可能ですか?
例:
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
});
this
ここでは何の略ですか?