เป็นไปได้หรือไม่ที่จะได้รับค่าปัจจุบันของค่าที่สังเกตได้ภายในการสมัครรับข้อมูลที่สังเกตได้ก่อนที่จะได้รับค่าใหม่
ตัวอย่าง:
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
ย่อมาจากที่นี่?