4
What exactly does the Ajax code when I write:
cache: false,
in an ajax request?
4
What exactly does the Ajax code when I write:
cache: false,
in an ajax request?
4
4
When we use the request many times, and it has the same return the browser saves the cache thus making it impossible to have an updated response and we end up seeing the same result, putting cache: false
avoid browser save cache always keeping updated, another tip and whenever you are developing you update the page with Ctrl + F5
.
Browser other questions tagged javascript ajax
You are not signed in. Login or sign up in order to post.