iOS 'Web App' has different localStorage than Mobile Safari
I have a webapp for iPad with the meta tag:
<meta name="apple-mobile-web-app-capable" content="yes">
When I open up the app from the homepage (web-app-capable version) or type in the address in Mobile Safari the contents of localStorage are different. I have confirmed that the addresses are identical by printing location.href.
All changes made to localStorage while using Mobile safari are reflected in the web-app-capable version, but changes made in the web-app-capable version are not reflected in the Mobile Safari version.
The domains are identical, localStorage should be identical. What in the world is going on? Can this be fixed?
Update - Solution : Following suggestion #2 from the accepted answer (forcing the user to be in fullscreen mode) I added this bit of code:
if(("standalone" in window.navigator) && !window.navigator.standalone)
window.location = "instructions.html";
So, if you are using a browser that supports standalone mode, and you are not in standalone mode, redirect to a page (instructions.html) which shows the user how to add the app to the home screen.
Thank you to everyone for their input!
Summary:
Safari and full-screen web apps (aka web-app-capable) have separate in-memory write-through caches of the localStorage data. Each time the full-screen app becomes active, it reloads the localStorage from disk (allowing it see Safari's changes). However, when Safari becomes active, it doesn't reload the localStorage data from disk, so it won't see changes made in the full-screen app unless you kill Safari and restart it.
Full Explanation:
There are only two hard problems in Computer Science:
The buggy behavior in localStorage is a result of problem #1. Here's why:
When the iOS browser engine loads, it reads the data for localStorage from disk and caches it in memory. Then each time you read data (eg getItem
), the data is read from memory, not from disk; and when writing (eg setItem
) the data is written to memory, and then (asynchronously) flushed to disk. Since localStorage is synchronous, this implementation is a totally reasonable. If it went to disk for all reads and writes, your javascript would be blocked on every read/write to perform expensive disk IO.
The problem is that a full screen web app (let's call it a FSWA) uses a separate instance of the iOS browser engine, and although a FSWA shares the same location on disk for the localStorage data, it does not share the in-memory cache of localStorage data with Safari.
When you add the fact that FSWA completely reloads (which means the localStorage data is reloaded from disk) each time they become the active application, you get the behavior that you are seeing.
Here's the behind the scenes...
To prove this, you can kill Safari between step #4 and step #10. Then when you relaunch Safari in step #11, it will reload the localStorage from disk and you will see the data written by the FSWA.
In iOS5 I was able to have two full screen web apps on the same domain that were able to see each other's localStorage. That overcame the difference between full screen and Safari.
However, with iOS6 I am having to merge my two full screen web apps to one app.
Assuming you're saving local storage data correctly and if I'm not mistaken, what you experience is a somewhat of a common issue among web app developers. Cookies, sessions and local storage seem to be stored differently in the "web app" (launched from homescreen) to that of the data saved via mobile safari.
I've done some rather thorough testings of this in the past and it seems to me that there's no workaround good enough . Just to give you an example where my colleagues and I have faced a similar problem: in a web app we developed recently, the user has to login before accessing all its features. If one logs in via mobile safari and then switches to the downloaded version of the app, one expects to be logged in but this is not always the case. One usually has to login again, suggesting cookies may be stored in different "data banks", depending on how or from where you choose to launch the app.
Furthermore, as Calvin says, there are more to it than just different data banks as it were. Apps launched via home screen appears to open more slowly, homescreen apps are always reloaded when launched suggesting no multi task support, etc. My conclusion: the program launching downloaded web apps != safari minus the address bar and hence should not be treated as such.
Although a nice feature by Apple, homescreen web apps don't quite perform as expected or as one would hope (like as it were opened in safari.) In your case, assuming you store LS data correctly and have tried different approaches to fix your particular problem, I would suggest one of the following alternatives:
Hope this helped clarifying at least parts of it.
链接地址: http://www.djcxy.com/p/90932.html上一篇: 无意捕获图像,在不同设备上提供不同的输出