在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完成的.
标签:function-parameter,javascript 来源: https://codeday.me/bug/20190916/1807740.html