iPad - 存储来自网络表单的数据
我在网页上有一个简单的表单。我有一台 ipad,将在没有 3g 或互联网连接的房间中使用。
如何存储通过表单提交的所有数据的结果,以便稍后我可以下载该数据或将其导出到某个地方?
最快的方法是什么?
无需在 xcode 中重新创建整个表单?
贾森
I have a simple form on a web page. I've got an ipad that is going to be used in a room with no 3g or internet connection.
How can I store the results of all the data that is submitted through the form, so that later, i can just download that data or export it somewhere?
What's the quickest way?
without having to recreate the entire form in xcode?
Jason
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于要存储的数据很少, NSUserDefaults 可能是正确的选择。
保存字符串:
检索字符串:
With such little data to store, NSUserDefaults is probably the way to go.
Save a string:
Retrieve a string:
在没有互联网连接的情况下,您将如何提供网页服务?您是否将其包含在应用程序中然后使用 WebView 来显示它?如果是这样,您应该能够使用 SQLite 之类的工具来保存数据,然后再有一个“管理员”端,您可以在其中查看数据库中的主菜。
How are you going to serve the web page with no internet connection? Are you including it in an App then using WebView to display it? If so you should be able to use something like SQLite to save the data, then later have an "administrator" side where you can view the entrees in the Database.