gpt4 book ai didi

javascript - javascript/jQuery 中带有可变参数的函数

转载 作者:数据小太阳 更新时间:2023-10-29 05:53:02 26 4
gpt4 key购买 nike

我需要建议。

这是我的问题,我有“N”个函数。

 var FirstOne  = function(){
return $.ajax({
type: "POST",
url: hrefUrl,
data: JSON2.stringify(option),
contentType: "application/json; charset=utf-8",
dataType: "json",
error: function(status){
},
success: function(data){
}
});
};

var SecondOne = function(){

return $.ajax({
type: "POST",
url: hrefUrl,
data: JSON2.stringify(option2),
contentType: "application/json; charset=utf-8",
dataType: "json",
error: function(status){
},
success: function(data){
}
});
};


.............


var NOne = function(){

return $.ajax({
type: "POST",
url: hrefUrl,
data: JSON2.stringify(optionn),
contentType: "application/json; charset=utf-8",
dataType: "json",
error: function(status){
},
success: function(data){
}
});
};

所有这些函数都被压入一个对象 this 中。

var funcObject= [FirstOne(), SecondOne(), ....... NOne() ];

在我等待所有 Ajax 功能都完成后,并且在我没事之后。

    $.when.apply($, funcObject).done(function (a1, a2, ...an) {
// ..... here already doesn't matter

});

我的问题在这里:

function (a1, a2, ...an)

我想用一个对象代替函数参数,因为我不知道会有多少个函数。

所以我可以编辑函数对象,这很酷 $.when.apply($, fucArr),问题是使用可变数量的参数。

PS:也许我也可以对这些参数使用“apply”或“call”?

有人可以给我一个想法吗?非常感谢你们!!!

最佳答案

您可以使用 the arguments keyword 访问传递给方法的所有参数例如:

function () {
Console.log(arguments); //arguments is an array
}

The apply method可用于在另一个函数调用中使用这些参数:

function () {
someFunction.apply(this, arguments);
}

关于javascript - javascript/jQuery 中带有可变参数的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9280214/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com