是否可以将函数的所有参数作为该函数内的单个对象获取?

Posted

技术标签:

【中文标题】是否可以将函数的所有参数作为该函数内的单个对象获取?【英文标题】:Is it possible to get all arguments of a function as single object inside that function? 【发布时间】:2011-06-05 17:02:25 【问题描述】:

php 中有 func_num_argsfunc_get_argsjavascript 有类似的吗?

【问题讨论】:

【参考方案1】:

使用arguments。您可以像访问数组一样访问它。使用arguments.length 作为参数数量。

【讨论】:

这仅适用于传统的 JavaScript function,不适用于 ES2015+ 胖箭头 => 函数。对于那些,你会想在函数定义中使用...args,如下所示:(...args) => console.log(args) "Uncaught ReferenceError: arguments is not defined" David:当使用 SCRIPT 标记将 JavaScript 文件包含在 html 中时,window.location 未按预期设置。使用这种方法会丢失任何参数。【参考方案2】:

参数是an array-like object(不是实际的数组)。示例函数...

function testArguments () // <-- notice no arguments specified

    console.log(arguments); // outputs the arguments to the console
    var htmlOutput = "";
    for (var i=0; i < arguments.length; i++) 
        htmlOutput += '<li>' + arguments[i] + '</li>';
    
    document.write('<ul>' + htmlOutput + '</ul>');

试试看……

testArguments("This", "is", "a", "test");  // outputs ["This","is","a","test"]
testArguments(1,2,3,4,5,6,7,8,9);          // outputs [1,2,3,4,5,6,7,8,9]

完整详情:https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Functions_and_function_scope/arguments

【讨论】:

为什么不在这里发布结果呢? :) 这比接受的答案要好得多,因为它包含一个工作代码 sn-p 并显示输出。接受的答案太稀疏了。 好答案...在“不是实际数组”上扩展将是一个很好的答案 我添加了一个简单描述的链接:“类数组对象”只是一个“具有非负整数长度属性的对象,通常还有一些索引属性。”来自 mozilla 链接:“它类似于数组,但除了长度之外没有任何数组属性。”【参考方案3】:

在 ES6 中,使用 Array.from:

function foo()
  
  foo.bar = Array.from(arguments);
  foo.baz = foo.bar.join();
  

foo(1,2,3,4,5,6,7);
foo.bar // Array [1, 2, 3, 4, 5, 6, 7]
foo.baz // "1,2,3,4,5,6,7"

对于非 ES6 代码,使用 JSON.stringify 和 JSON.parse:

function foo()
  
  foo.bar = JSON.stringify(arguments); 
  foo.baz = JSON.parse(foo.bar); 
  

/* Atomic Data */
foo(1,2,3,4,5,6,7);
foo.bar // ""0":1,"1":2,"2":3,"3":4,"4":5,"5":6,"6":7"
foo.baz // [object Object]

/* Structured Data */
foo(1:2,[3,4],/5,6/,Date())
foo.bar //""0":"1":2,"1":[3,4],"2":,"3":"Tue Dec 17 2013 16:25:44 GMT-0800 (Pacific Standard Time)""
foo.baz // [object Object]

如果需要保存而不是字符串化,请使用internal structured cloning algorithm。

如果传递了 DOM 节点,则使用 XMLSerializer,就像在 unrelated question 中一样。

with (new XMLSerializer()) serializeToString(document.documentElement) 

如果作为书签运行,您可能需要将每个结构化数据参数包装在 Error 构造函数中,以使 JSON.stringify 正常工作。

参考文献

Structure Clone CommonJS Module

JS Object Clone

MDN: Array.from()

【讨论】:

首先:这将克隆传入的任何对象。其次:并非所有内容都可以字符串化为 JSON。即:函数,DOM对象,表示日期字符串化为字符串... @JanDvorak 你能用处理 DOM 对象、函数和日期的函数来编辑我的答案吗? +1,尝试将错误报告的参数作为字符串传递,对象最终以字符串 '[object Arguments]' 的形式出现,并且将其记录到控制台不会显示值。虽然它似乎没有回答 OP,但它确实回答了我的问题,谢谢!【参考方案4】:

arguments 对象是存储函数参数的位置。

arguments 对象的行为和看起来像一个数组,它基本上是,它只是没有数组所做的方法,例如:

Array.forEach(callback[, thisArg]);

Array.map(callback[, thisArg])

Array.filter(callback[, thisArg]);

Array.slice(begin[, end])

Array.indexOf(searchElement[, fromIndex])

我认为将 arguments 对象转换为 real 数组的最佳方法是这样的:

argumentsArray = [].slice.apply(arguments);

这将使它成为一个数组;

可重复使用:

function ArgumentsToArray(args) 
    return [].slice.apply(args);


(function() 
   args = ArgumentsToArray(arguments);

   args.forEach(function(value) 
      console.log('value ===', value);
   );

)('name', 1, , 'two', 3)

结果:

> value === name > value === 1 > value === Object > value === two > value === 3

【讨论】:

[].slice.apply(arguments); 不是最好的方法,因为它会导致不必要的空数组分配。【参考方案5】:

如果您愿意,也可以将其转换为数组。如果数组泛型可用:

var args = Array.slice(arguments)

否则:

var args = Array.prototype.slice.call(arguments);

来自Mozilla MDN:

你不应该对参数进行切片,因为它会阻止优化 JavaScript 引擎(例如 V8)。

【讨论】:

感谢您的更新。使用 JSON.stringify 和 JSON.parse 作为替代:function foo() foo.bar = JSON.stringify(arguments); foo.baz = JSON.parse(foo.bar); 如果需要保存而不是字符串化,请使用 internal structured cloning algorithm。如果传递了 DOM 节点,则使用 XMLSerializer,就像在 unrelated question 中一样。 with (new XMLSerializer()) serializeToString(document.documentElement) 【参考方案6】:

正如许多其他人指出的那样,arguments 包含传递给函数的所有参数。

如果你想调用另一个具有相同参数的函数,请使用apply

例子:

var is_debug = true;
var debug = function() 
  if (is_debug) 
    console.log.apply(console, arguments);
  


debug("message", "another argument")

【讨论】:

【参考方案7】:

是的,如果您不知道在函数声明时可能有多少个参数,那么您可以在没有参数的情况下声明该函数,并且可以通过在函数调用时传递的参数数组访问所有变量。

【讨论】:

【参考方案8】:

ES6 允许使用“...”符号指定函数参数的构造,例如

function testArgs (...args) 
 // Where you can test picking the first element
 console.log(args[0]); 

【讨论】:

这似乎是使用箭头功能时的唯一方法。 a = () =&gt; console.log(arguments);; a('foo');-- Uncaught ReferenceError: arguments is not defined 但是a = (...args) =&gt; console.log(args);; a('foo');["foo"] @DavidBaucum 是正确的。因为箭头函数不会创建新的作用域,而“参数”是从作用域中收集的。但最坏的情况不是 ReferenceError。就是“参数”是从外部范围收集的。然后你不会有任何异常,并且可能会在你的应用程序中出现奇怪的错误。 这也叫“休息参数”,见developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/…。【参考方案9】:

与 Gunnar 类似的答案,并提供更完整的示例: 您甚至可以透明地返回整个内容:

function dumpArguments(...args) 
  for (var i = 0; i < args.length; i++)
    console.log(args[i]);
  return args;


dumpArguments("foo", "bar", true, 42, ["yes", "no"],  'banana': true );

输出:

foo
bar
true
42
["yes","no"]
"banana":true

https://codepen.io/fnocke/pen/mmoxOr?editors=0010

【讨论】:

【参考方案10】:

在 ES6 中你可以这样做:

function foo(...args) 

   let [a,b,...c] = args;

   console.log(a,b,c);



foo(1, null,"x",true, undefined);

【讨论】:

你甚至可以做 ``` function foo(a, b, ...c) console.log(a,b,c); ```【参考方案11】:

希望这会有所帮助:

function x(...args) 
    console.log( ...[...args]  ); 


x(a:1,b:2, 'test');

输出:

 '0':  a: 1, b: 2 , '1': 'test' 

【讨论】:

以上是关于是否可以将函数的所有参数作为该函数内的单个对象获取?的主要内容,如果未能解决你的问题,请参考以下文章

Canvas 相关参数简介

javascript 编写一个以单个字符串(单词)作为参数的函数。该函数必须返回包含所有capit索引的有序列表

如何处理对象属性内的事件函数?

是否可以在 Flutter 的函数中将类作为参数传递?

PHP将所有参数作为数组获取?

将大量参数传递给 Python 函数的方法