Talking about Ajax to solve the problem of browser caching

Source: Internet
Author: User

The main reason that Ajax can increase the speed of page loading is to reduce the loading of duplicate data through Ajax, that is, to load the data while the data is cached in memory, once the data is loaded, as long as the page is not refreshed, the data will be cached in memory, when the submitted URL is consistent with the historical URL, Does not need to be submitted to the server, that is, no need to obtain data from the server, although the server load, improve the user experience, but not to obtain the latest data. To ensure that the information read is up-to-date, it is necessary to disable its caching function.


There are several solutions to the solution:

① add Anyajaxobj.setrequestheader ("If-modified-since", "0") before Ajax sends the request.

② add Anyajaxobj.setrequestheader ("Cache-control", "No-cache") before Ajax sends the request.

③ Add a random number after the URL: "fresh=" + math.random ();.

④ add time after the URL: "nowtime=" + new Date (). GetTime ();.

⑤ If you are using jquery, use $.ajaxsetup ({cache:false}). All Ajax on the page executes the statement without having to save the cache record.

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.