gpt4 book ai didi

php - 从文本文件获取最新数据

转载 作者:行者123 更新时间:2023-11-28 20:59:47 24 4
gpt4 key购买 nike

更新文本文件的内容时,它不会更新。相反,我必须删除 Google Chrome 中的所有缓存和其他内容才能使其刷新。但是,在使用 Apache 服务器(本地主机)时它确实可以工作。

我尝试添加:<meta http-equiv="expires" content="Mon, 26 Jul 1997 05:00:00 GMT"/> <meta http-equiv="pragma" content="no-cache" /> ,但是问题仍然出现。

function MakeRequest()
{
var xmlHttp = getXMLHttp(); // just a basic XML request
xmlHttp.onreadystatechange = function()
{
if(xmlHttp.readyState == 4)
{
HandleResponse(xmlHttp.responseText);
}
}
xmlHttp.open("GET", "counter.txt", true);
xmlHttp.send(null);
}

我有另一个 JavaScript 只是在 div 中打印它:(定时运行,但有一些延迟)

document.getElementById('counterHolder').innerHTML = response;

Click here if you need to see the webpage live.

最佳答案

这似乎是一个缓存问题。我无法准确描述为什么会这样,但根据我的经验,在 get 请求中的 url 末尾添加随机字符串应该可行。我建议如下:

xmlHttp.open("GET", "counter.txt?" + Math.random(), true);

关于php - 从文本文件获取最新数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11320598/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com