我必须同时查询(通过 Ajax)2 个脚本。
我确信一个非常快,它只显示一些 html,第二个是使用 WebService 进行一些查询。
快速请求总是在第一个请求之后发送。但是在我所有的尝试中,快速/快速的,在慢速之前永远不会完成。
用于调用第一个长 ajax 请求的代码:
$.ajax({
type: "POST",
url: '/fr/ajax_flight_get_other_oneway',
cache: false,
dataType: 'json',
success: function(data) {
// some treatment
}
第二个更快的 ajax 请求的代码:
$.ajax({
type: "POST",
url: '/fr/load_back_forflight?id=SN4422_23',
cache: false,
data: "comps="+compSelectedCodes+"&escale="+escale,
dataType: 'json',
success: function(data) {
// some treatment
}
是 Apache 中应该更改的东西还是 jQuery 中的东西?