经过大量试验,我成功地能够保持与数据库的连续服务器连接。现在编码 keet cheking 并显示消息,如果数据库中有新消息。
请检查并判断 此代码中是否使用了真正的长轮询技术?如果不是,那么请建议,我错在哪里(偏离长轮询)以及如何才能使这成为真正的长轮询。
当前,我收到这些错误。但是它仍然保持与数据库的持续连接。
- 每次,只拉一条消息而不是全部。(我使用了 .each 循环,但它停止了长轮询)
每 10/15 秒后,出现令牌错误(Parse erroe(syntax error=unexpected token))。
var last_msg_id = 2; function load_msgs() { $.ajax({ type:"Post", url:"getdata.php", data:{ last_msg_id:last_msg_id }, dataType:"json", async:true, cache:false, success:function(data) { var json = data; $("#commidwin").append(json['msg']); last_msg_id = json["last_msg_id_db"]; setTimeout("load_msgs()", 1000); }, error:function(XMLhttprequest, textstatus, errorthrown) { alert("error:" + textstatus + "(" + errorthrown + ")"); setTimeout("load_msgs()", 15000); } }); }
php文件在这里
$last_msg_id=$_POST['last_msg_id'];
$last_msg_id_db=1;
while($last_msg_id>$last_msg_id_db){
usleep(10000);
clearstatcache();
$sql=mysqli_query($db3->connection,"SELECT * FROM chat_com where id>'$last_msg_id' ORDER by id ASC");
$sql_m=mysqli_query($db3->connection,"SELECT max(id) as maxid FROM chat_com");
$row_m=mysqli_fetch_array($sql_m);
$last_msg_id_db=$row_m['maxid'];
while($row=mysqli_fetch_array($sql)){
$textt=$row['mesg'];
$last_msg_id_db=$last_msg_id_db;
$response=array();
$response['msg']=$textt;
$response['last_msg_id_db']=$last_msg_id_db;
}
}
echo json_encode($response);