vote up 1 vote down star

Hi All,

This may not be possible (or might be dead easy! :) ) so here it is...

I want to be able to create objects of a type that is dependant on a variable set, without the need for a big switch statement.

I think it is possible in PHP to do something like...

$objectType = "myNewClass";
$newObject = new $objectType();

where the $newObject variable will hold an instance of the Class "myNewClass".

Is this (or any similar technique) possible with Javascript?

Thanks Stuart

flag

63% accept rate

3 Answers

vote up 3 vote down check

If your constructor functions are defined in the global scope, you can access it trough the bracket notation (window[fnName]):

function ObjectType1(){  // example constructor function
  this.type = 1;
}


var objectType = 'ObjectType1'; // string containing the constructor function name

var obj = new window[objectType](); // creating a new instance using the string
                                    // variable to call the constructor

See: Member Operators

link|flag
Thanks very much! That worked a treat. The only modification for people who might visit this in the future is that in the ExtJS context if you change the "object" to the ExtJS namespace that is begin used. e.g. "var obj = new Ext.ux['myObject']();" Thanks again! – Stuart Aug 1 at 15:31
vote up -2 vote down

Should be doable using eval():

var obj = eval("new " + objectType + "()");
link|flag
-1 for lazy and dangerous code. – Justin Johnson Aug 2 at 7:02
For the benefit of all of us, could you elaborate on how this code is lazy, and how is it dangerous? – Zed Aug 2 at 7:33
vote up 1 vote down

CMS's answer is good, but in EXT you're probably dealing with namespaces.

I create an object map that holds any dynamic classes:

// within a namespace:
var ns = {
    Thinger: function(){}
};

// globals:
var Zinger = function(){} 

// map:
var classes = {
    zinger:Zinger,
    thinger:ns.Thinger    
};

var type = "thinger";

var myClass = new classes[type](props, type, etc);
link|flag

Your Answer

Get an OpenID
or

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