-
-
Save jamesmusgrave/7322303 to your computer and use it in GitHub Desktop.
Cached JSON via jQuery
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var getCachedJSON = function (url) { | |
var deferred = new $.Deferred(); | |
var cachedData = window.localStorage[url]; | |
if (cachedData) { | |
log('Data already cached, returning from cache:', url); | |
deferred.resolve(JSON.parse(cachedData)); | |
} else { | |
$.getJSON(url, function(data) { | |
log('Fetched data, saving to cache:', url); | |
window.localStorage[url] = JSON.stringify(data); | |
deferred.resolve(data); | |
}); | |
} | |
return deferred.promise(); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment