dongqin5604 2019-03-01 20:12
浏览 69
已采纳

使用ajax(javascript)监视文本文件中的更改

I have done my research and cannot find an answer that works on this topic. I have a webpage right now with a text input field, every time that the input is changed it runs a function that writes data to a text file. The problem is that when I try to read the file and change an elements contents to the text file's contents, it always returns the same value. My function returns a value that my text file was a long while ago. Here is my code:

function OpenFile(filePath) {
    var text = "NULL";
    var ajax = new XMLHttpRequest();
    ajax.onreadystatechange = function() {
        if (ajax.readyState == 4) {
            text = ajax.responseText;
        }
    };
    ajax.open("POST", filePath, false);
    ajax.send();
    return text;
}

function WriteFile(filePath, content){
    var formdata = new FormData();
    formdata.append("content", content);
    var ajax = new XMLHttpRequest();
    ajax.open("POST", filePath);
    ajax.onreadystatechange = function() {
        if(ajax.status == 200 && ajax.readyState == 4) {
            
        }
    };
    ajax.send(formdata);
}

Is there anything wrong with my code that prevents me from reading the current contents of my file?

</div>
  • 写回答

1条回答 默认 最新

  • dongshi2836 2019-03-01 20:22
    关注

    The file may be cached by the browser's HTTP cache. Try appending a randomly-generated number as a query parameter to your request (your filePath variable).

    For example,

    function OpenFile(filePath) {
        var text = "NULL";
        var ajax = new XMLHttpRequest();
        ajax.onreadystatechange = function() {
            if (ajax.readyState == 4) {
                text = ajax.responseText;
            }
        };
    
        // HERE, append the query parameter with random number
        ajax.open("POST", filePath + '?' + Math.random(), false);
    
        ajax.send();
        return text;
    }
    

    If that was the problem, then see here on more questions on how to manage clearing caches.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 求差集那个函数有问题,有无佬可以解决
  • ¥15 【提问】基于Invest的水源涵养
  • ¥20 微信网友居然可以通过vx号找到我绑的手机号
  • ¥15 寻一个支付宝扫码远程授权登录的软件助手app
  • ¥15 解riccati方程组
  • ¥15 display:none;样式在嵌套结构中的已设置了display样式的元素上不起作用?
  • ¥15 使用rabbitMQ 消息队列作为url源进行多线程爬取时,总有几个url没有处理的问题。
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名
  • ¥65 汇编语言除法溢出问题