如何从 iPhone/iPad 使用 post 方法发送多条记录?
我需要一些有关使用 http POST 方法发送多个记录的帮助。我的 iPhone 中有一个数据库,其中包含 StudentName,Semester,TotalMarks,Grade 等字段。 每条记录都包含上述每个字段的值。可以有超过 500 条记录,我想使用 POST 方法将信息发送到服务器。谁能帮助我如何实现这一目标?
代码片段会更有帮助
I need some help on sending multiple records using http POST method . I have a database in my iPhone with fields like StudentName,Semester,TotalMarks,Grade .
Each record consist of values for each of the above mentioned fields . There can be more than 500 records and i want to send the information to server using POST method . Can anyone help me out how to achieve this ?
Snippet of code will be more helpful
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法可能是将数据捆绑在 JSON 文件中并将其作为发布的表单值提交。探索众多 JSON 库之一(我喜欢 JSON Framework,但我并不热衷于它)和用于发布 HTTP 请求的 ASIHTTPRequest(我对此很热衷)。
任何代码建议都有太多可能的起点,没有任何意义。不过,如果您向我们展示您的代码从哪里开始,我们就可以从那里提供帮助。
The simplest way would probably be to bundle the data up in a JSON file and submit it as a posted form value. Explore one of the many JSON libraries (I like JSON Framework, but I'm not religious about it) and ASIHTTPRequest for posting the HTTP request (which I am religious about).
There are way too many possible starting points for any code suggestion to make any sense. If you show us where you're starting from in YOUR code, though, we can help from there.