在 iOS 应用程序中访问 localStorage

发布于 2024-10-07 00:27:31 字数 252 浏览 4 评论 0原文

我正在将远程 html/javascript 内容提供到 iPad 应用程序中。 JavaScript 代码运行良好,html 渲染良好,但任何访问 localStorage 的尝试都会抛出“Security_err:dom 异常 18”。

我尝试使用 localStorage 因为 Safari 默认情况下不接受第三方 cookie。有没有什么方法可以设置 cookie 或将远程内容中的值存储在 localStorage 中,以便在服务到 iOS 应用程序时保持状态?

I'm serving up remote html/javascript content into an iPad app. Javascript code runs great and html renders fine, but any attempt to access localStorage throws "Security_err: dom exception 18".

I was attempting to use localStorage because Safari by default won't accept third party cookies. Is there any way to set cookies or store values in localStorage from remote content to maintain state when served into an iOS app?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忆梦 2024-10-14 00:27:31

我知道这个问题已经很老了(并且已经尘埃落定),但这里有一个答案。

异常18通常是跨域权限问题。

考虑以下解决方案之一:

  1. 不要预加载 html 字符串然后使用 [myWebView loadHTMLString:str baseURL:url];,只需让 webview 使用 [myWebView loadRequest:someNSURLRequest];

  2. 如果您使用 Cordova,请编辑 Cordova.plist 文件,将一个新条目添加到ExternalHosts 列表,其值为 *(请考虑此解决方案的安全漏洞) .

I know this question is old (and gaining dust), but here's an answer.

exception 18 is usually a cross domain permission issue.

consider one of the following solutions:

  1. Instead of preloading the html string and then using [myWebView loadHTMLString:str baseURL:url];, just let the webview handle the whole request life cycle using [myWebView loadRequest:someNSURLRequest];

  2. If your'e using Cordova, Edit your Cordova.plist file, add a new entry to the ExternalHosts list with the value * (please consider the security compromise with this solution).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文