我使用以下代码为帖子添加评论并在不刷新页面的情况下显示它,但不知何故,它会显示两次而不是一次的评论,但它只在数据库中保存一次。当我刷新页面时,它只显示每个注释一次,所以我猜问题是“ajax响应”。以下是代码,感谢您的帮助。
JavaScript的:
function addComment(pid) {
var url;
var comment = document.getElementById("comment").value;
xml_http = getXmlHttpObject();
if (xml_http == null) return alert("Your browser is too old to run this page!");
url = '../auth.php?comment=' + comment + '&pid=' + pid;
url += '&p=' + Math.random();
xml_http.onreadystatechange = commentStatus;
xml_http.open("GET", url, true);
xml_http.send(null);
}
function commentStatus() {
$("#comm").append(xml_http.responseText);
}
PHP:
include_once('include/comment.php');
addComment($_GET['pid'], filter($_GET['comment']));
if(empty($_SESSION['pic'])) $pic = "images/silh.gif";
else $pic = "/profile/image.php/{$_SESSION['uname']}.{$_SESSION['pic']}?width=45&cropratio=1:1&image=/profile/pix/{$_SESSION['uname']}.{$_SESSION['pic']}";
echo "<div id='comments'>\n"
."<img src='{$pic}' align='left' style='padding-right:5px' />"
."<span id='bluetxt'>By {$_SESSION['uname']}</span><br />\n"
."<span>Posted Now</span>\n"
."<br /><br /><p style='clear:both'>{$_GET['comment']}</p>"
. "</div><br />\n";
我故意不从数据库中读取评论,我只是将其发布回页面。
答案 0 :(得分:1)
您可能只应在xml_http状态为4时附加注释。试试这样:
function addComment(pid) {
var url;
var comment = document.getElementById("comment").value;
var xml_http = getXmlHttpObject();
if (xml_http == null)
return alert("Your browser is too old to run this page!");
url = '../auth.php?comment=' + comment + '&pid=' + pid;
url += '&p=' + Math.random();
xml_http.onreadystatechange = function() {
if (xml_http.readyState==4) {
appendComment(xml_http.responseText);
}
};
xml_http.open("GET", url, true);
xml_http.send(null);
}
function appendComment(commentHTML) {
$("#comm").append(commentHTML);
}