What exactly does Ajax code do when I write:
cache: false,
in an ajax request?
What exactly does Ajax code do when I write:
cache: false,
in an ajax request?
When we use the request many times, and it has the same return, the browser saves the cache so we can not have an updated response and we ended up seeing the same result, putting cache: false
of the browser to save the cache, always keeping it updated, another tip and whenever you are developing you update the page with Ctrl + F5
.