如何在iPad上获取本地HTML文件的提交数据
本质上,我有一个动态生成的本地 HTML 表单,我希望能够从中获取信息。有没有办法将我的数据发布到 iPad 应用程序资源文件夹中的另一个本地文件,以便我可以实际解析并保存它?
我的问题是这个表格将在没有互联网的地区使用,所以我需要能够将其保存在本地。
这可能吗?
Essentially, I have a dynamically generated local HTML form that I would like to be able to get information from. Is there any way to POST my data to another local file in the resources folder of my IPad application so I can actually parse and save it?
My problem is this form will be used in areas with no internet so I need to be able to save it locally.
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
UIWebViewDelegate
中实现webView:shouldStartLoadWithRequest:navigationType:
方法,并从NSURLRequest
中提取表单数据并将其保存到本地文件或无论您需要用它做什么。Implement the
webView:shouldStartLoadWithRequest:navigationType:
method in yourUIWebViewDelegate
and pull out the form data from theNSURLRequest
and save it to a local file or whatever else you need to do with it.