如何清除JSON缓存 [英] How to clear the cache for JSON

查看:465
本文介绍了如何清除JSON缓存的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用jQuery读取JSON文件.如果我更新了.get()读取的文件,则在读取较新的文件时仍会得到旧值.既然我每秒读写一次文件,那么如何解决此问题?不能手动清除缓存.

I'm reading a JSON file with jQuery. If I update the file that .get() reads it still gets the old values when I read the newer file. Since I write and read the file every second, how can I solve this problem? Manually clearing the cache won't be a option.

function readEye() {

    $.getJSON('output.json', function(data){

        console.log(data);

    });

}

推荐答案

使用 $.ajaxSetup 设置

$.ajaxSetup({
  cache:false
});

之后,您可以使用

function readEye() {
  $.getJSON('output.json', function(data){
    console.log(data);
  });
}

这篇关于如何清除JSON缓存的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆