2

我想知道如何<div>使用AJAX正在显示的内容是从MySQL database. 棘手的部分是我希望将<div>每个结果显示 30 秒,然后重新加载以显示下一个结果。

这是media table

_______________________________________________
| FIELD 1 |  FIELD 2  |  FIELD 3  |  FIELD 4  |
-----------------------------------------------
|   ID    |   TVOne   |   TVTwo   |  Active   |
-----------------------------------------------
|   15    |   no      |     no    |    no     |
-----------------------------------------------
|   29    |   yes     |     no    |   yes     |
-----------------------------------------------
|   53    |    no     |     no    |    no     |
-----------------------------------------------
|   71    |   yes     |    yes    |    yes    |
-----------------------------------------------

<div>位于 TVOne 的页面中,我希望它加载记录 29 和 71。在<div>位于 TVTwo 的页面中,我希望它只加载记录 71。这table是由用户在后端修改的,所以结果总是与众不同。

我正在阅读这个问题,我相信javascript选择器.eq()可能是拼图的一部分,但我不确定如何将它们放在一起。

所在的页面<div>称为index4.php。前一页 ( index3.php) 执行查询以查看是否有任何记录设置为活动,如果是,则设置num_rows$count并转到index4.php?count=$count,如果不是,则返回显示序列的开头index.php

这是index3.php重定向功能:

<?php
$result = $mysqli->query("SELECT * FROM media WHERE Active = 1 AND TVTwo = 1");
$count = $result->num_rows;
if($count > 0){$media = "index4.php?count=$count";}
else{$media = "index.php";}
?>

<script>
refresh=window.setTimeout(function(){location.href="<?php echo $media;?>"},15000);
</script>

这是我AJAX加载的代码<div>

<script>
function MediaQuery(qty)
    {
    if (qty=="")
        {
        document.getElementById("Media").innerHTML="";
        return;
        }
    if (window.XMLHttpRequest)
        {// code for IE7+, Firefox, Chrome, Opera, Safari
        xmlhttp=new XMLHttpRequest();
        }
    else
        {// code for IE6, IE5
        xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
        }
    xmlhttp.onreadystatechange=function()
        {
        if (xmlhttp.readyState==4 && xmlhttp.status==200)
            {
            document.getElementById("Media").innerHTML=xmlhttp.responseText;
            }
        }
    xmlhttp.open("GET","../process/QueryMedia.php?count="+qty,true);
    xmlhttp.send();
    }
</script>

这是QueryMedia.php:

<?php
$count = $_GET["count"];

$sql = ("SELECT * FROM media WHERE Active = 1 AND TVTwo = 1 LIMIT $count");

if(!$result_sql = $mysqli->query($sql))
    {
    echo QueryCheck("getting the media records ","from the media",$mysqli);
    }

// fetch it here
?>
4

1 回答 1

0

好吧,我想通了。

  1. index3.php检查数据库以查看是否已将任何内容设置为“活动”(在这种情况下,它还检查以查看它被设置为显示在哪个显示器上)。
  2. 当它找到一条记录时,它通过to发送变量$i(用作键并设置为最高结果)。$_GETindex4.php
  3. index4.php页面加载时,它会触发function MediaQuery(i),然后QueryMedia.php根据给定的键请求数据库记录。
  4. QueryMedia.php加载结果后,密钥i减 1,然后在function MediaQuery(i)短暂延迟后再次发送。
  5. 一旦i键到达最后一个结果,这总是0,页面将重定向到显示序列的开头index.php

这里是index3.php

<?php
$sql = $mysqli->query("SELECT * FROM media WHERE Media_Active = 1 AND Media_TVTwo = 1");
$count = $sql->num_rows;

if($count != 0)// If there are results returned then redirect to the media page.
    {
    $i = $count - 1;

    $media = "index4.php?i=$i";
    }
else // Else redirect to the first page.
    {
    $media = "index.php";
    }
?>

<script>
window.setTimeout(function(){location.href="<?php echo $media;?>"},20000);
</script>

这里是index4.php

<script>
function MediaQuery(i)
    {
    if (i < 0)
        {
        window.setTimeout(function(){location.href="index.php"},0);
        return;
        }
    if (window.XMLHttpRequest)
        {// code for IE7+, Firefox, Chrome, Opera, Safari
        xmlhttp=new XMLHttpRequest();
        }
    else
        {// code for IE6, IE5
        xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
        }
    xmlhttp.onreadystatechange=function()
        {
        if (xmlhttp.readyState==4 && xmlhttp.status==200)
            {
            document.getElementById("Media").innerHTML=xmlhttp.responseText;
            var i = document.getElementById("i").innerHTML;
            var i = i-1;
            setTimeout(function() {MediaQuery(i)},20000);
            }
        }
    xmlhttp.open("GET","../process/QueryMedia.php?i="+i,true);
    xmlhttp.send();
    }
</script>

<body onload="MediaQuery(<?php echo $_GET['i'];?>)">

这里是QueryMedia.php

<?php
$i = $_GET["i"];

    $sql = ("SELECT * FROM media WHERE Media_Active = 1 AND Media_TVTwo = 1 ORDER BY Media_Name");

    if(!$result_sql = $mysqli->query($sql))
        {
        echo QueryCheck("getting the media records ","from the media",$mysqli);
        }

    $id = array();
    while($idquery = $result_sql->fetch_assoc())
        {
        $id[] = $idquery['Media_ID'];
        }

    $sql2 = ("SELECT * FROM media WHERE Media_ID = $id[$i]");

    if(!$result_sql2 = $mysqli->query($sql2))
        {
        echo QueryCheck("getting the media records ","from the media",$mysqli);
        }

    while($media = $result_sql2->fetch_assoc())
        {
        $img = $media['Media_Name'];
        $width = $media['Media_Width'];
        $height = $media['Media_Height'];
        $msg = $media['Media_Msg'];
        }
?>

<img src="../images/media/<?php echo $img; ?>" border="2" width="<?php echo $width; ?>px" height="<?php echo $height; ?>px">

<p align="center" class="f24" style="margin:5px"><?php echo $msg; ?></p>
<p id="i" style="display:none;"><?php echo $i; ?></p><!-- used to return the key value -->

我毫不怀疑这可能不是最有效的做事方式,有很多服务器请求正在进行,我确信代码有点臃肿。如果有人想帮助我让它变得更好,我一定会很感激你的意见。

于 2013-04-25T05:53:12.837 回答