我有一个使用PHP,MySQL和jQuery开发的新闻源。新闻源通过每5秒获取新内容来完成它的工作。但是,这是通过“刷新”完整内容来完成的。我只想在新闻Feed中添加任何新内容。我希望使用淡入或滚动效果(jQuery)来实现此目的。已加载的项目应保留在Feed中,不得使用任何新内容重新加载。我怎么能这样做?
这是我的2页和代码。
feed.php
<body >
<script>
window.setInterval(function(){
refreshNews();
}, 5000);
</script>
<div id="news"></div>
<script>
function refreshNews()
{
$("#news").fadeOut().load("ajax.php", function( response, status, xhr){
if (status == "error"){
}
else
{
$(this).fadeIn();
}
});
}
</script>
</body>
</html>
ajax.php
<?php require_once('../../Connections/f12_database_connect.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}
$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}
mysql_select_db($database_f12_database_connect, $f12_database_connect);
$query_newsfeed_q = "SELECT * FROM newsfeed ORDER BY pk DESC";
$newsfeed_q = mysql_query($query_newsfeed_q, $f12_database_connect) or die(mysql_error());
$row_newsfeed_q = mysql_fetch_assoc($newsfeed_q);
$totalRows_newsfeed_q = mysql_num_rows($newsfeed_q);
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>
</head>
<body>
<table border="1">
<tr>
<td>pk</td>
<td>title</td>
<td>content</td>
</tr>
<?php do { ?>
<tr>
<td><?php echo $row_newsfeed_q['pk']; ?></td>
<td><?php echo $row_newsfeed_q['title']; ?></td>
<td><?php echo $row_newsfeed_q['content']; ?></td>
</tr>
<?php } while ($row_newsfeed_q = mysql_fetch_assoc($newsfeed_q)); ?>
</table>
</body>
</html>
<?php
mysql_free_result($newsfeed_q);
?>
答案 0 :(得分:1)
我不太清楚你是如何进行这种设置的,但这似乎不对:
<强> newsFeed.php 强>
<php
$array_with_news = array('news1' => array('pk' => 'pk1', 'title' => 'title1', 'content' => 'title2'), 'news2' => array('pk' => 'pk2', 'title' => 'title2', 'content' => 'content2'));
echo json_encode($array_with_news);
?>
<强>的index.php 强>
<html>
<head>
<script type="text\javascript">
window.setInterval(function(){
updateNews();
}, 5000);
function updateNews(){
var scope = this;
$.getJSON('newsFeed.php*', function(data) {
//data will contain the news information
$.each(data, function(index, value) {
this.addNewsRow(value);
});
});
}
function addNewsRow(newsData){
//this function will add html content
var pk = newsData.pk, title = newsData.title, content = newsData.content;
$('#news').append(pk + ' ' + title + ' ' + content);
}
</script>
</head>
<body>
<div id="news"></div>
</body>
</html>
我没有对此进行测试,但这是它应该如何工作的总体思路。 index.php是用户将要去的地方,我们将执行updateNews的每个时间间隔,这个函数负责通过AJAX调用newsFeed.php。 newsFeed.php负责查询数据库并使用包含所有新闻信息的json对象进行响应。一旦updateNews()从newsFeed.php获得响应,它将遍历JSON对象并将响应的内容添加到div。
希望这是有道理的。
答案 1 :(得分:1)
您可以随时停止滥用innerHTML
。
相反,您应该从服务器发送JSON作为重播,然后手动“构建”DOM以获取新项目。为了方便起见,我建议除了有关新闻的数据外,还要发送另一个参数:版本号。
数据流如下:
version
号码(首次运行):
ajax.php
发送请求并接收JSON version
号并存储在本地关闭version
的值不 undefined
:
ajax.php?version=XXXX
请求数据并接收JSON:
{}
,则没有新的Feed。什么都不做version
更新为从服务器多数民众赞成我会怎么做。