1

これは私のページの基本的なフレームワークです:

$.when(postrequest1, postrequest2).then(function () {
  // how do I access the results of postrequest1 and postrequest 2 here?
});
4

3 に答える 3

1
$.when(postrequest1, postrequest2).then(function (data1,data2) {
  // data1, data2 are arrays of the form [ "success", statusText, jqXHR ] 
});

匿名コールバック関数にデータ引数を与えるだけです。詳細については、 $.when()を参照してください。

于 2013-04-09T10:01:05.337 に答える