I have implemented the InAppBrowser plugin to display a web page:
window.open(encodeURI('http://app.website.com'), '_self', 'location=no,toolbar=no,hidden=yes');
After changing the content of the URL, I noticed that when I restart the app, the latest changes are not reflected. It seems like the content is being cached somehow.
I attempted to use clearcache=yes
and clearsessioncache=yes
, but these options did not solve the issue.
However, if I set the target
to _self
, then the updated content appears correctly.
Does anyone have any suggestions on how to handle this situation?