3

我正在尝试让我的 ajax 从服务器请求信息,并使其保持活动状态至少 1 分钟,然后休息并重新启动,并获取并传递一个新的 streamitem_id,如果它们是自上次调用以来插入的。

目前它运行得如此之快,只有一次,我不明白为什么。

AJAX

<script type="text/javascript" charset="utf-8">

function wait() {
    var streamitem_id =<? echo $streamitem_catch['streamitem_id']; ?>;
    $.ajax({
        type: "POST",
        url: "testingajaxfeed.php?streamitem_id=" + streamitem_id,
        async: true,
        cache: false,, 
        dataType: "json",
        data: {streamitem_id: streamitem_id}, 
        success: function (response) {
        setTimeout("wait()",1000);
            $("#homestatusid").prepend("MY INSERTED RESPONSE");
        },
    });
}
$(document).ready(function(){
wait();
}); 
</script>

PHP

if (isset($_POST['streamitem_id'])) {
$lastID = (int)$_POST['streamitem_id'];

if(empty($lastID)) {
 die('timeout');
}
else {
$following_string = $_SESSION['id'];
$result="SELECT d.*, c.*, u.*
  FROM streamdata          AS d
  JOIN streamdata_comments AS c ON d.streamitem_id = c.comment_streamitem
  JOIN users               AS u ON u.id = c.comment_poster
 WHERE d.streamitem_id > '$lastID'
   AND c.comment_poster = '$following_string'
   AND (d.streamitem_creator  = '$following_string')
   OR d.streamitem_creator IN $friendlist
   AND d.streamitem_type_id NOT IN ('3')
   ORDER BY '$lastID' DESC LIMIT 1";
$result = mysqli_query($mysqli, $result) or die(mysqli_error($mysqli));

while ($resultArr = mysqli_fetch_array($result)) {
$json = array();
    $json['streamitem_id'] = $resultArr['streamitem_id'];
    $json['streamitem_content'] = $resultArr['streamitem_content'];
    $json['streamitem_timestamp'] = Agotime($resultArr['streamitem_timestamp']);
    $json['comment_id'] = $resultArr['comment_id'];
    $json['comment_content'] = $resultArr['comment_content'];
    $json['comment_poster'] = $resultArr['comment_poster'];
    $json['comment_datetime'] = Agotime($resultArr['comment_datetime']);
    $json['comment_streamitem'] = $resultArr['comment_streamitem'];
    $json['username'] = $resultArr['username'];
    $json['id'] = $resultArr['id'];
    $json['first'] = $resultArr['first'];
    $json['middle'] = $resultArr['middle'];
    $json['last'] = $resultArr['last'];
echo json_encode($json);
}}}
4

2 回答 2

0

setTimeout 不像你期望的那样工作。ajax 请求不能像你想要的那样“保持活力”。发送请求,PHP 脚本返回内容,ajax 脚本获取结果。所有这一切都发生在约 1-2 秒内。

如果这用于某种类型的流(看起来像),您将不得不让函数在很小的间隔内一次又一次地重复。

我已经像这样更改了您的代码:

<script type="text/javascript" charset="utf-8">

function wait() {
    var streamitem_id =<? echo $streamitem_catch['streamitem_id']; ?>;
    $.ajax({
        type: "POST",
        url: "testingajaxfeed.php?streamitem_id=" + streamitem_id,
        async: true,
        cache: false,
        dataType: "json",
        data: {streamitem_id: streamitem_id}, 
        success: function (response) {
            $("#homestatusid").prepend("MY INSERTED RESPONSE");
        },
    });
}
$(document).ready(function(){
setInterval(wait,10000);
}); 
</script>

ajax 脚本将每 10 秒触发一次。您可以自己编辑速度,但请记住,短时间内过多的请求会使您的服务器崩溃/变慢。

于 2012-09-16T12:29:14.573 回答
0

在您的 PHP 脚本中,您需要使用该sleep函数以保持连接有效。

就像是:

function callScript(callback) {
    $.post('myscript.php',{data:data},function(data) {
        if (data == -1) {
            return callScript(callback);
        }
        return callback(data);
    }
}

我的脚本.php

$interval = 50;
$iters = floor(1000 / $interval);
while($conditional === false) {
    if (--$iters < 1) { die(-1); } 
    sleep($interval);
}
echo $json;

虽然这不是您所需要的,但它可以很容易地适应您的需要。我已经用其他东西完成了这项工作,虽然成本很高,但您可以使用 sql 语句等待添加条目等。

于 2012-09-16T12:30:03.943 回答