Home > Web Front-end > JS Tutorial > body text

Summary of solutions to Ajax caching problems

韦小宝
Release: 2017-12-31 10:21:10
Original
1442 people have browsed it

The caching problem of Ajax is quite annoying, but there are solutions, and there are more than one. You can add a random number or time after the URL. Friends who are interested in ajax come together. Take a look at the summary of solutions to Ajax caching problems!

1. Add anyAjaxObj.setRequestHeader("If-Modified-Since", "0") before sending the ajax request.

2. Add anyAjaxObj.setRequestHeader("Cache-Control", "no-cache") before sending the ajax request.

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

4. Add the time after the URL: "nowtime=" + new Date().getTime();.

5. If you are using jQuery, just do $.ajaxSetup({cache:false}). In this way, all ajax on the page will execute this statement and there is no need to save cache records.

The above is all the content of this article, I hope it will be helpful to everyone!

Related recommendations:

Analysis and solutions to the causes of 415 errors when Ajax transfers json format data to the background

ajax cross-page submission form

Ajax implements partial refresh login interface with verification code

The above is the detailed content of Summary of solutions to Ajax caching problems. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!