如何使用动态名称创建功能?类似的东西:
function create_function(name){
new Function(name, 'console.log("hello world")');
}
create_function('example');
example(); // --> 'hello world'
此函数也应该是一个Function Object,因此我可以修改对象的原型。
答案 0 :(得分:14)
我在过去的3个小时里一直在玩这个游戏,最后使用其他主题建议的新功能,至少有点优雅:
/**
* JavaScript Rename Function
* @author Nate Ferrero
* @license Public Domain
* @date Apr 5th, 2014
*/
var renameFunction = function (name, fn) {
return (new Function("return function (call) { return function " + name +
" () { return call(this, arguments) }; };")())(Function.apply.bind(fn));
};
/**
* Test Code
*/
var cls = renameFunction('Book', function (title) {
this.title = title;
});
new cls('One Flew to Kill a Mockingbird');
如果您运行上面的代码,您应该看到以下输出到您的控制台:
Book {title: "One Flew to Kill a Mockingbird"}
答案 1 :(得分:12)
window.example = function () { alert('hello world') }
example();
或
name = 'example';
window[name] = function () { ... }
...
或
window[name] = new Function('alert("hello world")')