小编典典

跳过JavaScript中的可选函数参数

javascript

您能否指出我跳过JavaScript中可选参数的好方法。

例如,我想在opt_这里丢弃所有参数:

goog.net.XhrIo.send(url, opt_callback, opt_method, opt_content, {'Cache-Control': 'no-cache'}, opt_timeoutInterval)

阅读 1039

收藏
2020-05-01

共1个答案

小编典典

解:

goog.net.XhrIo.send(url, undefined, undefined, undefined, {'Cache-Control': 'no-cache'})

您应该使用undefined而不是要跳过的可选参数,因为这100%会模拟JavaScript中可选参数的默认值。

小例子:

myfunc(param);

//is equivalent to

myfunc(param, undefined, undefined, undefined);

强烈建议
:如果您有很多参数,请使用JSON,并且可以在参数列表的中间包含可选参数。看看这是如何在jQuery中完成的。

2020-05-01