任何人都可以帮助我。我正在使用 phonegap 应用程序在 Jquery-mobile 中工作。如何在从服务器获取 ajax 响应的同时附加数据?这里有超过800 kb的数据以Json 格式从服务器检索。
这是我的代码:
$.ajax({
url:url,
data:'',
contentType: "application/json; charset=utf-8",
type: "POST",
dataType: "json",
crossDomain:true,
cache: false,
async:false,
//success: loadAllCars,
success:function(data){
//alert(data)
},
error: OnError
});
我想同时获取从服务器获取的数据,例如:
我有超过 800 KB 大小的数据,当它获得 10 KB 大小的 800 KB 数据时,我需要同时获取它以减少附加延迟并避免用户等待