Jump to content
  • 0

Создание экземпляра класса по имени класса, содержащемся в строке


freeneutron
 Share

Question

Если конкретно, в dojo есть много классов, на подобие dojox.form.DateTextBox, которые используются следующим образом

var element = new dojox.form.DateTextBox(options,id_string);

Но если скрипт создает элементы по списку, например по такому:

var elements = [
{
options: {},
id_string: 'id-1',
type: 'dojox.form.DateTextBox'
},
{
options: {},
id_string: 'id-2',
type: 'dojox.form.Textarea'
},
]

то скорее всего их создание должно выглядеть так:

var form = {};
for(var i=0;i<elements.length;i++){
var el = elements[i];
if(el.type == 'dojox.form.DateTextBox')form[el.id_string] = new dojox.form.DateTextBox(el.options,el.id_string);
if(el.type == 'dojox.form.Textarea')form[el.id_string] = new dojox.form.Textarea(el.options,el.id_string);
}

То есть, в приведенном коде необходимо перечислить все типы элементов, которые могут встретится задающем списке. Но нельзя ли сделать проще, то есть, без перечисления всех возможных типов?

Как например в PHP: $object = new $class_nsme;

$class_nsme может быть именем любого класса.

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy