我正在嘗試長輪詢,它與文本文件工作,但我不能讓它從表中返回的一切。如何使用json從表中返回數據行?
var timestamp = null;
function waitForMsg() {
$.ajax({
type: 'GET',
url: 'update.php?timestamp=' + timestamp,
async: true,
cache: false,
success:function(data) {
// alert(data);
var json = eval('('+data+')');
if (json['msg'] != '') {
$('div.alltext').html(json['msg']); // MD
}
timestamp = json['timestamp'];
setTimeout('waitForMsg()', 1000);
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
// alert('error '+textStatus+'('+errorThrown+')');
setTimeout('waitForMsg()', 1000);
}
});
}
update.php
$filename = 'test.txt';
$lastmodif = isset($_GET['timestamp']) ? $_GET['timestamp'] : 0;
$currentmodif = filemtime($filename);
while ($currentmodif <= $lastmodif) {
usleep(10000);
clearstatcache();
$currentmodif = filemtime($filename);
}
// how to rewrite the following?
$response = array();
$response['msg'] = file_get_contents($filename);
$response['timestamp'] = $currentmodif;
echo json_encode($response);
如何重寫了最後一部分得到的一切,從一個數據庫表?
編輯:
我嘗試以下,但它只返回一個結果,而不是最新的一個,但一個前。
$response = array();
while($row = mysqli_fetch_assoc($r)) {
$nou = $row['f1'];
$nru = $row['f2'];
$ntext = $row['content'];
$ntime = $row['time'];
}
$response['msg'] = $ntext;
$response['timestamp'] = $currentmodif;
所以 - 你做一個研究如何爲數據庫的工作? –
是的。我現在會發布我試過的東西。 –
你可以發佈你已經執行的SQL查詢嗎? –