Solution to cache storage problem of IE browser in Ajax

Source: Internet
Author: User

: Add a timestamp or random number to the link in the AJAX request

Summary of three methods

The code is as follows Copy Code


1.xmlhttp.setrequestheader ("Cache-control", "No-cache");

2.url + + "&random=" +math.random ();

3.url + + "xtamp=" +new Date (). GetTime ();

Analysis and research


Add T=math.random () after the URL sent by JavaScript, as
href = url+ "&" + "t=" +math.random ();
or href = URL + "&" + "t=" + New Date (). GetTime ();
: Add Xmlhttprequest.setrequestheader ("If-modified-since", "0") before XMLHttpRequest send the request;
Such as
Xhr.setrequestheader ("If-modified-since", "0");
Xhr.send ();
. server-side code joins Response.setheader ("Cache-control", "No-cache, must-revalidate");
If you are using jquery, simple, set the cache to False can be

HTML processing method

The code is as follows Copy Code
<meta http-equiv= "Pragma" content= "No-cache" >
<meta http-equiv= "Cache-control" content= "No-cache" >
<meta http-equiv= "Expires" content= "0" >

Program words we take Java as an example

  code is as follows copy code

Response.sethea Der ("Pragma", "No-cache");
Response.setheader ("Cache-control", "No-cache");
Response.setdateheader ("Expires", 0);

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.