これは私のページの基本的なフレームワークです:
$.when(postrequest1, postrequest2).then(function () {
// how do I access the results of postrequest1 and postrequest 2 here?
});
$.when(postrequest1, postrequest2).then(function (data1,data2) {
// data1, data2 are arrays of the form [ "success", statusText, jqXHR ]
});
匿名コールバック関数にデータ引数を与えるだけです。詳細については、 $.when()を参照してください。