跳过JavaScript中的可选函数参数

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

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

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

回答:

解:

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中完成的。

以上是 跳过JavaScript中的可选函数参数 的全部内容, 来源链接: utcz.com/qa/428761.html

回到顶部