Firefox在动态iframe中加载缓存

时间:2012-02-28 03:54:22

标签: php javascript firefox caching

我正在尝试创建一个页面,刷新后会从URL列表中随机加载网址。到目前为止,我发现这样做的最好方法是让PHP从文件中随机获取该行,然后将其加载到iframe中。这也允许我在顶部栏上有一个关闭按钮,允许加载到iframe中的任何页面突破。

我遇到的问题是,在几次重新加载后,在firefox中,iframe刚开始恢复到缓存,并且不会加载任何新内容。我猜这是一个缓存问题,因为按Ctrl + F5会使iframe加载一个新页面。

我尝试过放入一堆反缓存元标记,以及我在this文章中找到的一些javascript。

到目前为止一切都没有效果。有没有人知道一个好的解决方法或在我的代码中看到错误(我非常新手)。

感谢您的帮助!

以下是代码:

</html>

<head>
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<meta http-equiv="expires" content="FRI, 13 APR 1999 01:00:00 GMT">  
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>

<script type="text/javascript">

function Ionload()
{

$(parent.document).find("iframe").each(function() {
    // apply the logic only to the current iframe only
    if(this.contentDocument == window.document) {
       // if the href of the iframe is not same as 
       // the value of src attribute then reload it
      if(this.src != location.href) {
        this.src = this.src;
      }
    }
});

}
</script>

<?php

class MyClass
    {
    function GetLine()
        {
            global $line;

            srand ((double)microtime()*1000000);
            $f_contents = file ("urlz");
            $line = $f_contents[array_rand ($f_contents)];

        }

    function PrintVar()
        {
            global $line;
            print $line;
        }
    }

MyClass::GetLine();

?>

<style type="text/css" media="all">
    html, body {
      height: 100%
    }
    body {
      margin: 0;
      overflow: hidden;
    }
    #topbar {
      height: 50px;
      width: 100%;
      border-bottom: 3px solid #666
    }
    #page {
      height: 100%;
      width: 100%;
      border-width: 0
    }
</style>

</head>
<body>

<div id="topbar">

<a href=<?php MyClass::PrintVar();?> target="_top">close</a>

</div>

</body>

<iframe id="page" name="page" onload="Ionload()" src=<?php MyClass::PrintVar();?> frameborder="0" noresize="noresize"></iframe>

</html>

更新

在GGG的帮助下,我得到了修复。以下是对功能的更改:

function GetLine()
    {
        global $newline;

        srand ((double)microtime()*1000000);
        $f_contents = file ("urlz");
        $line = $f_contents[array_rand ($f_contents)];
        $newline = $line . "?foo=" . rand();

    }

我选择了一个随机数而不是一个序列,因为我不知道如何将一个序列从一个重载加载到另一个,但是这样可行。

我还注意到,如果在页面加载后不到两秒钟内刷新firefox,问题仍然存在,但我可以忍受。

1 个答案:

答案 0 :(得分:3)

尝试将虚拟查询字符串添加到URL上,以便浏览器强制跳过缓存。

例如,不是加载www.google.com,而是加载www.google.com?foo=N,其中N是您在每次加载时递增的数字。