I have a javascript literal object as shown below..
var db = new Observer();
var user = {
firstName: db.observe("abc"),
lastName: "xyz",
middleName: db.observe("test")
};
NOTE: the "firstName" value is a function call db.observe("abc") which takes a parameter.
var Observer = function() {
this.observe = function (value) { // INITIAL value of the field
// HOW WILL I GET "key, for e.g. firstName" key here so that i can associate "value" with it.
return this;
}
}
My requirement is to get the name of the key, in this case 'firstName" in the observe() function.
OR Please feel free to recommend alternatives to achieve the same.
NOTE: This is related to a small MVVM framework which I am experimenting with and am stuck at this point.
Let me know whether this is possible with JS.
REF: knockoutjs does something like this... http://knockoutjs.com/examples/helloWorld.html
db.observe("abc", 'firstName'), ...? – Yoshi Dec 12 '11 at 9:31Observer.observehas a way to access the appropriate property name and actually I would be quite surprised if there was a way to do it. – Yoshi Dec 12 '11 at 9:38