将数组转换为函数参数列表

2022-08-30 00:25:58

是否可以将 JavaScript 中的数组转换为函数参数序列?例:

run({ "render": [ 10, 20, 200, 200 ] });

function run(calls) {
  var app = .... // app is retrieved from storage
  for (func in calls) {
    // What should happen in the next line?
    var args = ....(calls[func]);
    app[func](args);  // This is equivalent to app.render(10, 20, 200, 200);
  }
}

答案 1

是的。在当前版本的JS中,您可以使用:

app[func]( ...args );

ES5 及更早版本的用户需要使用以下方法:.apply()

app[func].apply( this, args );

在MDN上阅读这些方法:


答案 2

来自类似主题的另一篇文章中的一个非常可读的示例:

var args = [ 'p0', 'p1', 'p2' ];

function call_me (param0, param1, param2 ) {
    // ...
}

// Calling the function using the array with apply()
call_me.apply(this, args);

这里有一个链接到我个人喜欢的原始帖子,因为它的可读性