有没有办法用javascript从字符串创建一个函数?

时间:2011-10-04 15:10:47

标签: javascript string function

例如;

var s = "function test(){
  alert(1);
}";

var fnc = aMethod(s);

如果这是字符串,我想要一个名为fnc的函数。并fnc();弹出警报屏幕。

eval("alert(1);")无法解决我的问题。

8 个答案:

答案 0 :(得分:164)

从字符串创建函数的更好方法是使用Function

var fn = Function("alert('hello there')");
fn();

这有利于当前范围(如果不是全局)中的变量不适用于新构造的函数。

也可以传递参数:

var addition = Function("a", "b", "return a + b;");
alert(addition(5, 3)); // shows '8'

答案 1 :(得分:48)

我添加了一个jsperf测试,用于从string创建函数的4种不同方法:

  • 将RegExp与函数类

    一起使用

    var func = "function (a, b) { return a + b; }".parseFunction();

  • 将Function类用于"返回"

    var func = new Function("return " + "function (a, b) { return a + b; }")();

  • 使用官方函数构造函数

    var func = new Function("a", "b", "return a + b;");

  • 使用Eval

    eval("var func = function (a, b) { return a + b; };");

http://jsben.ch/D2xTG

2个结果样本: enter image description here enter image description here

答案 2 :(得分:37)

你非常接近。

//Create string representation of function
var s = "function test(){  alert(1); }";

//"Register" the function
eval(s);

//Call the function
test();

这是a working fiddle

答案 3 :(得分:13)

是的,使用Function是一个很好的解决方案,但我们可以更进一步,准备解析字符串并将其转换为真正的JavaScript函数的通用解析器......

if (typeof String.prototype.parseFunction != 'function') {
    String.prototype.parseFunction = function () {
        var funcReg = /function *\(([^()]*)\)[ \n\t]*{(.*)}/gmi;
        var match = funcReg.exec(this.replace(/\n/g, ' '));

        if(match) {
            return new Function(match[1].split(','), match[2]);
        }

        return null;
    };
}

用法示例:

var func = 'function (a, b) { return a + b; }'.parseFunction();
alert(func(3,4));

func = 'function (a, b) { alert("Hello from function initiated from string!"); }'.parseFunction();
func();

here是jsfiddle

答案 4 :(得分:11)

JavaScript

中的动态函数名称

使用Function

var name = "foo";
// Implement it
var func = new Function("return function " + name + "(){ alert('hi there!'); };")();
// Test it
func();
// Next is TRUE
func.name === 'foo'

来源:http://marcosc.com/2012/03/dynamic-function-names-in-javascript/

使用eval

var name = "foo";
// Implement it
eval("function " + name + "() { alert('Foo'); };");
// Test it
foo();
// Next is TRUE
foo.name === 'foo'

使用sjsClass

https://github.com/reduardo7/sjsClass

实施例

Class.extend('newClassName', {
    __constructor: function() {
        // ...
    }
});

var x = new newClassName();
// Next is TRUE
newClassName.name === 'newClassName'

答案 5 :(得分:5)

这种技术可能最终等同于eval方法,但我想添加它,因为它可能对某些人有用。

var newCode = document.createElement("script");

newCode.text = "function newFun( a, b ) { return a + b; }";

document.body.appendChild( newCode );

这在功能上就像添加此< script>元素到文档的末尾,例如:

...

<script type="text/javascript">
function newFun( a, b ) { return a + b; }
</script>

</body>
</html>

答案 6 :(得分:2)

使用new Function()并返回内部并立即执行。

var s = `function test(){
  alert(1);
}`;

var new_fn = new Function("return " + s)()
console.log(new_fn)
new_fn()

答案 7 :(得分:0)

动态参数的示例:

let args = {a:1, b:2}
  , fnString = 'return a + b;';

let fn = Function.apply(Function, Object.keys(args).concat(fnString));

let result = fn.apply(fn, Object.keys(args).map(key=>args[key]))