duancong2965 2013-08-29 16:37
浏览 57
已采纳

Ajax + php长轮询得到了错误

I´m trying to do the ajax php polling function it seemed to work fine but I can´t understand what´s wrong or did I misunderstood something ?

Let´s see my code:

*In index.php*

  $tst = $conn->prepare('SELECT dtimestamp FROM inbx where recipient=:recipient  ORDER BY dtimestamp DESC LIMIT 1');

  $tst->bindParam(':recipient', $row['user_id']);
  $tst->execute();
  $rk= $tst->fetch();

<body onload="chkinbx(<?php echo $row['user_id']?>, <?php echo $rk['dtimestamp'] ?>);">

In Javascript

function chkinbx (user_id, cur_time) {

var old_timestamp=0;

var url="function.php?user_id="+user_id+"&cur_time="+cur_time;
var params="user_id="+encodeURIComponent(user_id)+"&cur_time="+encodeURIComponent(cur_time);


xmlHttp=GetXmlHttpObject()
xmlHttp.onreadystatechange=function () {

 if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete"){

var result=xmlHttp.responseText;
var res=JSON.parse(result);


if(res[2]==old_timestamp || cur_time==res[2]){

////  do nothing

}else{
    document.getElementById(bb).innerHTML="<a class='topNav' href='inbox.php'><span class='countmsg'>"+res[1]+"</span></a>";


}

setTimeout(function() {
chkinbx (res[3], res[4], cur_time);  // div   user_id   curtime

}, 1000); //8 seconds

 }
}

In function.php

$params=$_POST['params'];
$user_id=$_POST['user_id']; 
$cur_time=$_POST['cur_time'];

  $stmt = $conn->prepare('SELECT dtimestamp FROM inbx where recipient=:recipient AND inbxicn_is_click=:inbxicn_is_click  ORDER BY database_timestamp DESC' );
  $stmt->execute(array(':recipient'=>$user_id,':inbxicn_is_click'=>'N'));
  $r=$stmt->fetch();

while ($r['dtimestamp'] <= $cur_time) {
  sleep(10);
  clearstatcache();

 }

     $phpArray = array("ok",$stmt->rowCount(), $r['database_timestamp'], $user_id);
     echo json_encode($phpArray);

It won´t work until I change to ($r['dtimestamp'] > $cur_time) ; *I wonder why ?*

Because the logic is $cur_time( which post from javascript is the original timestamp in index.php. and $r['dtimestamp'] is the curent timstamp in database. This is the opposite from logic.

  • 写回答

1条回答 默认 最新

  • douliaodan2738 2013-08-29 16:47
    关注

    Because until $r['dtimestamp'] > $cur_time you have told it to sleep 10 and do clearstatcache(),

    while ($r['dtimestamp'] <= $cur_time) {
      sleep(10);
      clearstatcache();
    
     }
    

    it is only once $r['dtimestamp'] > $cur_time that it gets out of your while loop and if $r['dtimestamp'] < $cur_time to start with it will never suddenly get > unless something in clearstatcache is changing $cur_time

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 网络科学导论,网络控制
  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)