从javascript中的字符串名称获取对象类
我想从 Javascript 中的名称获取一个对象。 我正在开发一个需要加载一些不同上下文的应用程序,我正在尝试使用“继承”jquery 插件加载不同的类。一切都工作得很好,除了,当我需要实例化一个类时,我不能,因为我只有类的名称,而不是直接的对象。
基本上,我想找到类似“getClass(String name)”的东西。有人可以帮助我吗?
I would like to get an object from its name in Javascript.
I'm working on an application which will need to load up some different context, I'm trying so to load different classes with the "inherit" jquery plugin. Everything works just fine, excepts that, when I need to instanciate a class I can't because I've only the name of the class and not the object directly.
Basically, I would like to find something like 'getClass(String name)'. Does anyone could help me ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
不要使用
eval()
。您可以将您的类存储在地图中:
然后查找它们:
Don't use
eval()
.You could store your classes in a map:
and then just look them up:
JavaScript:基于字符串调用函数:
JavaScript: Call Function based on String:
您可以完美地使用
eval()
而不会产生安全风险:优点:您不必手动管理地图对象。
缺点:无。有了正确的正则表达式,任何人都无法运行任意代码。
You can perfectly use
eval()
without a security risk:Pros: You don't have to manually manage a map object.
Cons: None. With a proper regex, no one can run arbitrary code.
你是这个意思吗?
Do you mean this?