由于IE7中的缓存而导致JSON内容无法加载。 IE8

时间:2013-04-17 11:53:25

标签: jquery ajax json

我知道IE7&存在缓存问题。 IE8在使用AJAX加载JSON时,但我认为我已经解决了将缓存设置为false的问题。我的页面中的JSON有时无法仅在这些浏览器中加载。可能有什么不对?

var language = "de";

$.ajax({
        url: "json/" + language + "/content.json",
        data: "nocache=" + Math.random(),
        type: "GET",
        cache : false,
        contentType: "application/json",
        dataType: "json",
        success: function(source){
            data = source;
            showStartpage(data);
            showInfo(data);
        },
        error: function(data){
            alert("Failed to load content");
        }
    }); 

有什么想法吗?谢谢!

0 个答案:

没有答案