【发布时间】:2018-03-22 21:41:03
【问题描述】:
我通过 REACT js 开发了混合应用程序。它在桌面和应用程序上运行良好。但它不适用于设备(Ipad 或手机)任何浏览器私有窗口。问题是,我只能在设备的私人窗口中获取或设置localStorage 值。如何获得LocalStorage 值?
【问题讨论】:
标签: javascript ios reactjs ipad
我通过 REACT js 开发了混合应用程序。它在桌面和应用程序上运行良好。但它不适用于设备(Ipad 或手机)任何浏览器私有窗口。问题是,我只能在设备的私人窗口中获取或设置localStorage 值。如何获得LocalStorage 值?
【问题讨论】:
标签: javascript ios reactjs ipad
本地存储在 ios 的私有模式下被禁用。即使在正常模式下,localstorage 也可以“随机”擦除。
这里是developer.mozilla.org上的文章
Note: Starting with iOS 5.1, Safari Mobile stores localStorage data in
the cache folder, which is subject to occasional clean up, at the behest
of the OS, typically if space is short. Safari Mobile's Private Browsing
mode also prevents writing to localStorage entirely.
【讨论】: