You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
When using jQuery AJAX calls, the problem can be solved with the following configuration command:
$.ajaxSetup({ cache: false });
This does not seem to work when using $resource, presumably because $resource does not use the jQuery AJAX functionality. It seems that $resource needs a no-cache mode which, under IE8, would append a timestamp query parameter to prevent unwanted caching.
A fix or elegant workaround would be appreciated! We would love to tell our customers to drop IE8, but it turns out that the judicial system forces them to use IE8, so we're kind of stuck.