how to clear the cache in javascript?
We deployed the latest JavaScript code but we unable to get the latest javascript code
Can anyone help us?
|
1
|
how to clear the cache in javascript? We deployed the latest JavaScript code but we unable to get the latest javascript code Can anyone help us? |
||||||
|
|
|
Ctrl + F5 isn't working? It depends on what browser you're using, but in Firefox you can clear the cache with Tools -> Clear Private Data... |
||
|
|
|
|
You can't clear the cache with javascript. A common way is to append the revision number or last updated timestamp to the file, like this:
or
|
||
|
|
|
|
Try changing the JavaScript file's src? From this:
To this:
This method should force your browser to load a new copy of the JS file. |
||
|
|
|
I tend to version my framework then apply the version number to script and style paths
|
||||||
|
|
|
You can also force the code to be reloaded every hour, like this, in PHP :
|
||
|
|
|
|
Here's a snippet of what I'm using for my latest project. From the controller:
From the view:
Our publishing process generates a file with the revision number of the current build. This works by URL encoding that file and using that as a cache buster. As a fail-over, if that file doesn't exist, the year and week number are used so that caching still works, and it will be refreshed at least once a week. Also, this provides cache busting for every page load while in the development environment so that developers don't have to worry with clearing the cache for any resources (javascript, css, ajax calls, etc). |
||
|
|