是否可以将函数的所有参数作为该函数内的单个对象获取?
在 PHP 中,有 func_num_args
和func_get_args
,有类似的东西吗对于 JavaScript?
In PHP there is func_num_args
and func_get_args
, is there something similar for JavaScript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(12)
希望这可能是有用的代码:
~ Rahul Daksh
Hope this could be the helpful code:
~ Rahul Daksh
在 ES6 中,使用 Array.from:
对于非 ES6 代码,使用 JSON.stringify 和 JSON.parse:
如果需要保存而不是字符串化,请使用内部结构化克隆算法 。
如果传递 DOM 节点,请像不相关的问题中一样使用 XMLSerializer。
如果作为小书签运行,您可能需要将每个结构化数据参数包装在 Error 构造函数中,以便
JSON.stringify
正常工作。参考
结构克隆 CommonJS 模块
JS 对象克隆
MDN:Array.from()
In ES6, use
Array.from
:For non-ES6 code, use JSON.stringify and JSON.parse:
If preservation is needed instead of stringification, use the internal structured cloning algorithm.
If DOM nodes are passed, use XMLSerializer as in an unrelated question.
If running as a bookmarklet, you may need to wrap the each structured data argument in an Error constructor for
JSON.stringify
to work properly.References
Structure Clone CommonJS Module
JS Object Clone
MDN: Array.from()
对于现代 Javascript 或 Typescript:
对于古代 Javascript:
使用 <代码>参数。您可以像访问数组一样访问它。使用
arguments.length
作为参数数量。For modern Javascript or Typescript:
For ancient Javascript:
Use
arguments
. You can access it like an array. Usearguments.length
for the number of arguments.参数是类似数组的对象(不是实际的数组)。示例函数...
尝试一下...
完整详细信息: https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Functions_and_function_scope/arguments
The arguments is an array-like object (not an actual array). Example function...
Try it out...
The full details: https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Functions_and_function_scope/arguments
ES6 允许使用“...”符号指定函数参数的构造,例如
ES6 allows a construct where a function argument is specified with a "..." notation such as
arguments
对象是存储函数参数的地方。参数对象的行为和外观都像一个数组,它基本上就是这样,它只是没有数组所具有的方法,例如:
Array.forEach(callback[, thisArg]);
Array.map(callback[, thisArg])
Array.filter(callback[, thisArg]);
Array.slice(begin[, end])
Array.indexOf(searchElement[, fromIndex])
的最佳方法如下:
我认为将
arguments
对象转换为 real数组可重复使用:
结果:
The
arguments
object is where the functions arguments are stored.The arguments object acts and looks like an array, it basically is, it just doesn't have the methods that arrays do, for example:
Array.forEach(callback[, thisArg]);
Array.map(callback[, thisArg])
Array.filter(callback[, thisArg]);
Array.slice(begin[, end])
Array.indexOf(searchElement[, fromIndex])
I think the best way to convert a
arguments
object to a real Array is like so:That will make it an array;
reusable:
result:
如果您愿意,也可以将其转换为数组。如果数组泛型可用:
否则:
来自 Mozilla MDN:
You can also convert it to an array if you prefer. If Array generics are available:
Otherwise:
from Mozilla MDN:
正如许多其他人指出的那样,参数包含传递给函数的所有参数。
如果您想使用相同的参数调用另一个函数,请使用
apply
示例:
As many other pointed out,
arguments
contains all the arguments passed to a function.If you want to call another function with the same args, use
apply
Example:
与 Gunnar 类似的答案,有更完整的示例:
您甚至可以透明地返回整个内容:
输出:
https://codepen.io/fnocke /pen/mmoxOr?editors=0010
Similar answer to Gunnar, with more complete example:
You can even transparently return the whole thing:
Output:
https://codepen.io/fnocke/pen/mmoxOr?editors=0010
是的,如果您不知道在函数声明时可以有多少个参数,那么您可以声明不带参数的函数,并且可以通过在函数调用时传递的参数数组访问所有变量。
Yes if you have no idea that how many arguments are possible at the time of function declaration then you can declare the function with no parameters and can access all variables by arguments array which are passed at the time of function calling.
在 ES6 中你可以这样做:
In ES6 you can do something like this:
希望这有帮助:
输出:
Hope this helps:
Output: