gpt4 book ai didi

php - 使 AJAX 回调在迭代器中工作

转载 作者:行者123 更新时间:2023-11-29 13:54:07 25 4
gpt4 key购买 nike

为什么这不起作用?只有第一个响应的 success 调用有效。

for(i = 1; i <= 6; i++) {

$.ajax({
url : 'runTest.php',
type : 'post',
data : "testNumber="+i+"&url=" + testUrl,
dataType : 'json',
success : function(data) {

var row = $('<tr />');
$('<td />').text(data.testName).appendTo(row);
$('<td />').text(data.testSeverity).appendTo(row);
$('<td />').text(data.testResult).appendTo(row);
$('<td />').text(data.testResultDetail).appendTo(row);
$('<td />').text(data.testDescription).appendTo(row);

$('table#results tbody').append(row);

}
});

}

enter image description here

最佳答案

服务器端可能有问题。您同时触发同一个 PHP 脚本六次;也许数据库(或其他什么)正在锁定第一个请求和您没有检查的其他五个返回错误。在这种情况下,您需要在 PHP 中包含某种 while...sleep 循环,等待数据库可用。

以下是我针对类似问题所做的操作,当时我使用 PHP 脚本从 Google map 检索数据,但遇到了请求限制。但这个想法很简单,您应该能够根据自己的需要修改它:

$params = http_build_query($_GET);
$url = "http://maps.googleapis.com/maps/api/directions/json?sensor=false&" . $params;

$json = file_get_contents($url);
$status = json_decode($json)->status;

// check for over_query_limit status
while ($status=="OVER_QUERY_LIMIT") {
sleep(0.2); // seconds
$json = file_get_contents($url);
$status = json_decode($json)->status;
}

关于php - 使 AJAX 回调在迭代器中工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16153639/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com