我的服务器上有一个.txt文件。我需要一个脚本来在无限循环中读取它,每500ms。基本上,该变量应每500ms更新一次并显示在.php页面上。
有什么建议吗?
答案 0 :(得分:0)
这是用于读取文本文件的代码;
readTextFile("file:///C:/your/path/to/file.txt")
;
function readTextFile(file)
{
var rawFile = new XMLHttpRequest();
rawFile.open("GET", file, false);
rawFile.onreadystatechange = function ()
{
if(rawFile.readyState === 4)
{
if(rawFile.status === 200 || rawFile.status == 0)
{
var allText = rawFile.responseText;
alert(allText);
}
}
}
rawFile.send(null);
}
答案 1 :(得分:0)
我使用setTimeout
因为请求可能会等待很长时间。如果您不想等待setInterval
而不是setTimeout
,请注意使用ram。
var currentText=null;
var getText=function(){
$.ajax({
url: "http://www.sample-videos.com/text/Sample-text-file-10kb.txt",
success: function (r) { currentText=r;alert(currentText);setTimeout(getText,500); },
error: function () { alert('it doesnt work') }
});}
setTimeout(getText,500)