I am aware of how to create getters and setters for properties whose names one already knows, by doing something like this:

// A trivial example:
function MyObject(val){
    this.count = 0;
    this.value = val;
}
MyObject.prototype = {
    get value(){
        return this.count < 2 ? "Go away" : this._value;
    },
    set value(val){
        this._value = val + (++this.count);
    }
};
var a = new MyObject('foo');

alert(a.value); // --> "Go away"
a.value = 'bar';
alert(a.value); // --> "bar2"

Now, my question is, is it possible to define sort of catch-all getters and setters like these? I.e., create getters and setters for any property name which isn't already defined.

The concept is possible in PHP using the __get() and __set() magic methods (see the PHP documentation for information on these), so I'm really asking is there a JavaScript equivalent to these?

Needless to say, I'd ideally like a solution that is cross-browser compatible.

link|improve this question
feedback

3 Answers

up vote 4 down vote accepted

No, JavaScript doesn't have a catch-all property feature. The accessor syntax you're using is covered in Section 11.1.5 of the spec, and doesn't offer any wildcard or something like that.

You could, of course, implement a function to do it, but I'm guessing you probably don't want to use f = obj.prop("foo"); rather than f = obj.foo; and obj.prop("foo", value); rather than obj.foo = value; (which would be necessary for the function to handle unknown properties).

FWIW, the getter function (I didn't bother with setter logic) would look something like this:

MyObject.prototype.prop = function(propName) {
    if (propName in this) {
        // This object or its prototype already has this property,
        // return the existing value.
        return this[propName];
    }

    // ...Catch-all, deal with undefined property here...
};

But again, I can't imagine you'd really want to do that, because of how it changes how you use the object.

link|improve this answer
Thanks. This is what I thought, as no amount of googling has revealed a solution. – daiscog Oct 25 '11 at 15:57
feedback

In modern Javascript (FF4+, IE9+, Chrome 5+, Safari 5.1+, Opera 11.60+), there is Object.defineProperty. This example on the MDN explains very well how defineProperty works, and makes dynamic getters and setters possible.

Technically, this won't work on any dynamic query like you're looking for, but if your valid getters and setters are defined by, say, an AJAX call to a JSON-RPC server, for instance, then you could use this in the following way:

arrayOfNewProperties.forEach(function(property) {
    Object.defineProperty(myObject, property.name, {
        set: property.setter, get: property.getter
    });
});
link|improve this answer
feedback

Not 100% what you're asking but pretty close...

function Obj(){
   var innerProp = new Array; // note it's not "this" so it's private

   this.setInnerProp = function(key,val){
      innerProp[key] = val;
   }

   this.getInnerProp = function(key){
     return innerProp[key]
   }
 }

You can obviously tailor this to prototype onto whatever object you already have.

link|improve this answer
How does eval relate to the question? – T.J. Crowder Oct 25 '11 at 15:50
Personally, I don't like using eval. But I am interested in seeing a possible solution. Could you give an example? – daiscog Oct 25 '11 at 15:56
sorry... eval only gets you as far as the getter... I forgot that you can't eval(foo) = "new value", which was my original though, so, I modified the solution to something closer to what T.J. is also proposing (I modified it before he posted his :p) – Dr.Dredel Oct 25 '11 at 16:05
Thanks for the answer. I was hoping to avoid using functions and be able to just access the properties directly, but it looks as though this isn't possible. – daiscog Oct 25 '11 at 17:28
Javascript is a "functional" language, so... you're pretty much stuck using them for everything... there's a certain elegance to it, but I suppose if it doesn't look or feel right to you, you're always going to be running against the wall, in this way. :) – Dr.Dredel Oct 25 '11 at 17:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.