我有一個簡單的聊天服務。我在Mysql數據庫中存儲消息,登錄和時間等。聊天消息與阿賈克斯& PHP的幫助如何編寫Ajax代碼以在MySQL中插入新行時獲取新行?
<div id="messages"> </div><!--- chats are displayed here -->
我有以下這些DATAS獲取從MySQL中每2秒Ajax代碼顯示如下。當然,每個人都建議不要這樣做。這可能會對服務器性能產生負面影響它是不必要的。
$(document).ready(function() {
var destination_hashed = $("#destination_hashed").val();
var interval = setInterval(function() {
$.ajax ({
type: "POST",
url: "chat.php",
data: { destination_hashed1: destination_hashed },
success: function(data) {
$("#messages").html(data);
}
});
}, 2000);
});
在概括地說,我有兩個聊天客戶甲& B.當A發送消息給B,有插入在MySQL新行。
那麼,我該如何編寫Ajax & PHP代碼才能在有新行時進行提取。而不是新的行是否插入或不
當網站上的所有其他問題都以正常字體大小完成時,不需要在'heading3'中包含所有文本 – charlietfl 2014-09-13 04:33:48