UIWebView 中的 Web 应用程序可以访问本机存储吗
如果我有一个在 UIWebView 中运行的 Web 应用程序,那么该 Web 应用程序中的 javascript 上下文是否可以对本机 ipad 应用程序上下文中的数据进行任何形式的访问?我想在本机应用程序数据库中存储大量图像,然后从本机应用程序内的 UIWebView 中运行的 Web 应用程序访问这些图像。
If I have a web app running in a UIWebView can the javascript context in the web app get any sort of access to data in the native ipad app context? I'd like to store lots of images in the native app database, then access these from a web app running in a UIWebView within the native app.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不是直接的,但如果你能得到某种与 Javascript 一起工作的“桥梁”,你就可以使用本机代码将路径传递回文件等。查看
stringByEvaluatingJavaScriptFromString:@"SomeJSCommandHere"
。请查看此网页了解更多信息那。看起来他们正在讨论这个问题。Not directly, but if you can get some kind of "bridge" working with Javascript, you can use native code to pass back paths to files and such. Look into the the
stringByEvaluatingJavaScriptFromString:@"SomeJSCommandHere"
. Check out this webpage for more information on that. It looks like they discuss it.