我正在更新数据库中的数千行, 我想知道哪个更快使用不会使我的服务器超载,
我这里有一个检索数千个json数据的ajax请求,
在success: function(response){}
下,我有另一个更新每条记录的ajax请求。
看看我的代码,
我应该逐个执行吗?还是我应该把它作为一个整体传递?
$.ajax({
url: '', /* API Url of JSON Data from Hosts */
type: 'GET',
dataType: 'json',
xhrFields: {
withCredentials: true
},
success: function(response){
for(i=0; i < response.length; i++)
{
$.ajax({
url: '/api/update_record',
type: 'GET',
dataType: 'json',
data: { 'sample_data': response[i] },
success: function(response){
console.log(response);
}
});
}
}
});
谢谢,