1

我正在尝试使用 jQuery 的 when() 并传入 XHRRequests 的动态列表,但显然 when() 不支持将数组作为其参数。

我该怎么做呢?

我真的很感激任何帮助,谢谢!

4

1 回答 1

2

这里的关键函数是apply()

$.when.apply(null, arrayXHR).done(function(response1, response2, ....){ 
    console.log(response1, response2 ...);
});
于 2013-03-01T00:09:46.010 回答