通过 https 将表单数据从 iPhone 上传到 PHP 服务器
有没有关于如何将数据从iPhone上传到自有网络服务器的好的教程或示例项目?该项目类似于:
- iPhone 上的一个调查应用程序,它将用户输入的数据存储在 plist 中
- 当有互联网连接时,程序将启用“上传”按钮
- 当单击上传按钮时,程序将通过 HTTP 表单上传数据提交 (POST)
- 服务器是 Linux + MySQL + Apache + PHP
- 数据应通过
https://
连接发送
Is there a good tutorial or sample project of how to upload data from iPhone to a self-owned web server? The project is like:
- A survey application on iPhone which stores the user input data in a plist
- When there is internet connection, the program will enable an "Upload" button
- When the Upload button is clicked, the program will upload the data via HTTP form submit (POST)
- The server is Linux + MySQL + Apache + PHP
- The data should be sent via a
https://
connection
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有很多教程,但是,为了发送表单数据,我放弃了“修补”并使用了开源 ASIHTTPRequest 库(实际上是 ASIHTTPFormRequest),它非常棒,并且使一切变得非常简单。 http://allseeing-i.com/ASIHTTPRequest/ 下载内容包括示例
There are a number of tutorials around, however, to send form data, I gave up with "tinkering" and used the open source ASIHTTPRequest library (in fact ASIHTTPFormRequest) its fantastic and makes it all pretty trivial. http://allseeing-i.com/ASIHTTPRequest/ The download includes examples