Straight to the point: I have this javascript:
for(item=1;item<5;item++)
{
xmlhttp=new XMLHttpRequest();
xmlhttp.open("GET",'zzz.php', true);
xmlhttp.send();
}
Ve PHP böyle bir şey dosyası:
usleep(5);die('ok');
Now the problem is javascript seems to be waiting for each ajax call to be completed before sending another one. So the first response gets back after approx. 5 seconds, next after 10 seconds and so on.
Gerçek komut JS lib olarak PHP ve jQuery cURL kullanarak içerir beri, ben ne çok basitleştirilmiş versiyonu. Ama sorun aynı kalır.
Neden tepkiler 5 saniyelik aralıklarla geri geliyor?