I'm using jquery ajax, how to clear the cache of the ajax result?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Are you looking for $.ajax cache option? http://docs.jquery.com/Ajax/jQuery.ajax#options |
|||
|
|
|
If you want to bypass the cache you can add some random argument to the url:
|
|||||
|
You add a counter for every request. Ajax will cache the call but as the counter increments everytime, the params to load jsp will become different. |
||||
|
|
|
You can't actually clear the cache as it's controlled by the browser, but you can ask for the next request not to be cached by adding
|
|||||
|
