似乎无法在ajax调用中启用缓存

时间:2011-09-28 12:23:12

标签: jquery ajax caching

我遇到缓存被禁用的问题

我在下面有这个函数调用: 当我看到控制台时,我总是看到?_ =添加强制重新加载,我有很多

// MYDOMAIN / INC / JS / jqSelect / jquery.selectBox.js?_ = 1317158809279

从我所读到的,默认缓存设置为true,但我尝试设置它

还有其他地方有标志设置或什么?

感谢 好色

function(){
       $.ajax({
          url: "/secure/",
          type: 'GET',
          data: data,
          cache: true,
          beforeSend: function(){
              $('#secureLoading').animate({width: "600px"}, 250);
              $('#iframebody')
                    .fadeOut(250)
                    .find('.smallDdb')
                    .selectBox('destroy');

            },
          error: function(jqXHR, textStatus, errorThrown){
          },
          success: function(data){
            $('#iframebody').html(data).fadeIn(250);
          }
       });

0 个答案:

没有答案