您能否指出我跳过JavaScript中可选参数的好方法。
例如,我想在opt_这里丢弃所有参数:
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中可选参数的默认值。
undefined
小例子:
myfunc(param); //is equivalent to myfunc(param, undefined, undefined, undefined);
强烈建议 :如果您有很多参数,请使用JSON,并且可以在参数列表的中间包含可选参数。看看这是如何在jQuery中完成的。