14

如何创建具有动态名称的函数?就像是:

function create_function(name){
   new Function(name, 'console.log("hello world")');
}
create_function('example');
example(); // --> 'hello world'

该函数也应该是一个函数对象,所以我可以修改对象的原型。

4

2 回答 2

14

在过去的 3 个小时里,我一直在玩这个,最后使用 new Function 至少有点优雅,正如其他线程所建议的那样:

/**
 * 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"}
于 2014-04-05T11:41:00.920 回答
13
window.example = function () { alert('hello world') }
example();

或者

name = 'example';
window[name] = function () { ... }
...

或者

window[name] = new Function('alert("hello world")')
于 2013-01-06T01:43:21.013 回答