I'm working on Application where I'm required to cache certain request for
So I was toiling with the HTML5 cache
Here my manifest file
CACHE MANIFEST
# 2d25a26de3a1148a2fa5e534325f84cca2184090174c6ba451451c54f71f52d6
assets/application.js
assets/application.css
assets/glyphicons/png/glyphicons_064_lightbulb.png
assets/jquery-mobile/ajax-loader.gif
assets/jquery-mobile/icons-18-white.png
application.manifest
NETWORK:
/project_show
/application.manifest
Now I have content in /projects_show page that look like this
<div data-role="header" class="header">
</div>
<div data-role="content" class="content">
</div>
<div data-role="footer" class="footer" style="text-align:center">
</div>
<script type="text/javascript">
<%= store_key %>
</script>
<script id="header" type="text/template">
<h1>Listing of {{ carName }}</h1>
</script>
<script id="content" type="text/template">
<span>{{ pageName }}</span>
</script>
<script id="footer" type="text/template">
<span> CopyRight © {{ user }} </span>
</script>
<script type="text/javascript">
$(document).ready(function() {
if (window.navigator.onLine) {
$.getJSON('/project/2.json',function(data) {
localStorage.setItem("acura",JSON.stringify(data));
var carTemplate = $('#header').html();
var pageTemplate = $('#content').html();
var footerTemplate = $("#footer").html();
$('div.header').html(Mustache.to_html(carTemplate, data));
$('div.content').html(Mustache.to_html(pageTemplate, data));
$('div.footer').html(Mustache.to_html(footerTemplate,data));
})
else {
var data = JSON.parse(localStorage.getItem("acura"))
var carTemplate = $('#header').html();
var pageTemplate = $('#content').html();
var footerTemplate = $("#footer").html();
$('div.header').html(Mustache.to_html(carTemplate, data));
$('div.content').html(Mustache.to_html(pageTemplate, data));
$('div.footer').html(Mustache.to_html(footerTemplate,data));
}
})
</script>
You Can See the idea over here is if the user is online fetch the json response from the server and if not then fetch the data from the localStorage
Unfortunately the above code is not working since Reason
a) Cache Manifest file is caching the ajax request as well
Now one can See I'm havent ask HTML cache manifest to cache the json request
i.e /projects/2.json
Can anyone tell me why is this so
The above code work fine if the GET request if modified to a POST request i.e a POST request to/projects/2.jsoninstead of GET
But that is not what I'm looking for at any suggestion
FYI Manifest does follow the manifest file correctly as I also notice that my /projects getting cache even though not define in manifest
postthanks – Viren Nov 3 '12 at 13:12