I am using Knockout.js as a MVVM library to bind my data to some pages. I'm currently building a library to make REST calls to a web service.
My RESTful web service returns a simple structure:
{
id : 1,
details: {
name: "Johnny",
surname: "Boy"
}
}
I have an observable main parent, myObject
.
When I do
myObject(ko.mapping.fromJS(data))
the observables in myObject
are:
How can I make details
(and theoretically any object in the structure an observable)? I need this behavior so that i can set a computed observable on details and get noticed as soon as any of the internal data changes.
I have set up a basic recursive function which should do the trick. It doesn't, of course, myObject.details
doesn't become an observable.
// Makes every object in the tree an observable.
var makeAllObservables = function () {
makeChildrenObservables(myObject);
};
var makeChildrenObservables = function (object) {
// Make the parent an observable if it's not already
if (!ko.isObservable(object)) {
if ($.isArray(object))
object = ko.observableArray(object);
else
object = ko.observable(object);
}
// Loop through its children
for (var child in object()) {
makeChildrenObservables(object()[child]);
}
};
I'm pretty sure it's something about incorrect references, but how can I solve this? Thank you.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…