从本机 iPhone 应用程序访问 UIWebView 本地存储数据

发布于 2024-09-15 18:08:48 字数 125 浏览 6 评论 0原文

我正在编写一个包含 UIWebView 组件的本机 iPhone 应用程序。该组件访问互联网 Web 应用程序,并且该 Web 应用程序使用 HTML5 本地存储离线存储数据。

是否可以从本机应用程序访问此本地存储数据?

I'm writing a native iPhone app that contains a UIWebView component. This component accesses an internet webapp and the webapp stores data offline using HTML5 local storage.

Is it possible to access this local storage data from the native app ?

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

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

发布评论

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

评论(1

晨与橙与城 2024-09-22 18:08:48

我想做类似的事情。简而言之,DOM 和所有元素都不能直接访问。但是,您可以通过破解来获取数据。你所要做的就是将你自己的javascript注入到下载的网页中。然后评估结果。

此页面显示了执行此操作的机制:

http://iphoneincubator.com/blog/windows-views/how-to-inject-javascript-functions-into-a-uiwebview

然后你只需要知道数据库的名称并创建一些javascript即可返回 JSON 字符串中的值。使用 cocoa JSON 解析器从该字符串创建可在本机应用程序中使用的对象。

I was looking to do something similar to this. In short, the DOM and all elements are not directly accessible. However, you can hack things up to get at the data. What you have to do is inject your own javascript into the downloaded webpage. Then evaluate the results.

This page shows the mechanism for doing it:

http://iphoneincubator.com/blog/windows-views/how-to-inject-javascript-functions-into-a-uiwebview

Then you just need to know the name of the database and create some javascript to return the values in a JSON string. Use a cocoa JSON parser to create objects from that string that you can use in your native app.

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