How to prevent caching from jQuery Ajax?

后端 未结 3 1220
生来不讨喜
生来不讨喜 2020-12-21 08:50

Could anyone please help me with this? I have a web page using .manifest for offline storage caching. In that page, I use jQuery ajax call to get the data from the server. I

3条回答
  •  不知归路
    2020-12-21 09:01

    I have this piece of code at the top of each page/Master page

        //Disable caching in IE, becuase it's EVIL!
        $(document).ready(function () {
            $.ajaxSetup({ cache: false });
        });
    

提交回复
热议问题