我已经得到了一些非工作代码:
PackageLoader.prototype.activate = function(name) {
this.activePackages.push(new name());
}
我想要做的是将新实例推送到activePackages数组,如果它获得的名称是字符串。怎么做到这一点?
答案 0 :(得分:1)
如果name
未引用全局范围内的“类”,则可以安全地使用eval
:
function toConstructor(className) {
if (!/^[$_a-z][$_a-z0-9.]*$/i.test(className)) {
throw new Error("Invalid class name: " + className);
}
try {
return eval(className);
}
catch (error) {
return null;
}
}
使用它:
var Foo = {
Bar: {
Baz: function() {}
}
};
var Klass1 = toConstructor("XMLHttpRequest");
var xhr = new Klass1();
xhr.onreadystatechange = function() {};
var Klass2 = toConstructor("Foo.Bar.Baz");
var baz = new Klass2(3);
console.log(baz.x); // logs 3
var Klass3 = toConstructor("I.Do.Not.Exist");
console.log(Klass3); // logs NULL
答案 1 :(得分:0)
如果括号表示符在全局范围内,请使用括号表示法
this.activePackages.push(new window[name]());