admin管理员组文章数量:1332339
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);
});
}
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);
});
}
Share
Improve this question
edited Dec 31, 2011 at 20:12
ThinkingStiff
65.4k30 gold badges147 silver badges241 bronze badges
asked Dec 31, 2011 at 19:45
clankill3rclankill3r
9,58322 gold badges76 silver badges131 bronze badges
1 Answer
Reset to default 5use $.ajaxSetup
settings
$.ajaxSetup({
cache:false
});
after that you can use your code like
function readEye() {
$.getJSON('output.json', function(data){
console.log(data);
});
}
本文标签: javascriptHow to clear the cache for JSONStack Overflow
版权声明:本文标题:javascript - How to clear the cache for JSON - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742330704a2454636.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论