将 Facebook 中的通知发送到仪表板的理想机制是什么?我认为最好的方法是每 5 秒对 php 页面进行一次 Ajax 调用并检索通知。
有没有更好的方法来做类似的改变?
它也应该适用于所有移动浏览器。
我正在按照以下方式进行操作,
在 jquery 中使用$.post
无需刷新页面即可获取数据。
$.post("page.php",{"act":1},function(data){
$("#id").html(data);
});
in page.php write your query
编辑 1
在参考了一些在线笔记及其实时工作后,我写了一个这样的函数。
var TimeStamp = null;
function waitForMsg() {
$.ajax({
type: "GET",
url: "getData.php?timestamp=" + TimeStamp,
async: true,
cache: false,
timeout: 50000, /* Timeout in ms */
// data: "TimeStamp=" + TimeStamp,
success: function( data ) {
var json = eval('(' + data + ')');
if ( json['msg'] != "" ) {
alert( json['msg'] );
}
TimeStamp = json['timestamp'];
setTimeout(
'waitForMsg()', /* Request next message */
1000 /* ..after 1 seconds */
);
},
error: function( XMLHttpRequest, textStatus, errorThrown ) {
alert("error:" + textStatus + "(" + errorThrown + ")");
setTimeout(
'waitForMsg()', /* Try again after.. */
"15000"); /* milliseconds (15seconds) */
},
});
}
;
// calling after dom is ready
$(document).ready(function() {
waitForMsg();
});
PHP文件是,
<?php
$filename = dirname(__FILE__).'/data.txt';
$lastmodif = isset( $_GET['timestamp'] ) ? $_GET['timestamp'] : 0;
$currentmodif = filemtime( $filename );
while ( $currentmodif <= $lastmodif ) {
usleep( 10000 );
clearstatcache();
$currentmodif = filemtime($filename);
}
$response = array();
$response['msg'] = file_get_contents( $filename );
$response['timestamp'] = $currentmodif;
echo json_encode($response);
编辑 2
一切正常,但是当 data.txt 文件没有发生变化时,我会在 50 秒内收到这样的错误消息。
错误:超时(超时)
如何防止这种情况?
REF:Javascript 变量范围