I am trying to voce a reload of an html page when calling app navigate.
I build a html file dynamically on local storage and it changes for various reasons.
I have tried the following:
var filepath = "/file/some.html?var=" + new Date().getTime();
app.navigate(filepath);
I have also put javascript in the header:
document.location.reload(true);
I have also put in the meta tags in the header for no-cache, etc. with no luck.
Only when I shut the app down and restart it does the cache seem to be cleared and the page reloaded.
Any help would be great.
Thanks in advance.
I build a html file dynamically on local storage and it changes for various reasons.
I have tried the following:
var filepath = "/file/some.html?var=" + new Date().getTime();
app.navigate(filepath);
I have also put javascript in the header:
document.location.reload(true);
I have also put in the meta tags in the header for no-cache, etc. with no luck.
Only when I shut the app down and restart it does the cache seem to be cleared and the page reloaded.
Any help would be great.
Thanks in advance.