如何从 iPhone/iPad 使用 post 方法发送多条记录?

发布于 2024-10-22 18:59:35 字数 190 浏览 1 评论 0原文

我需要一些有关使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏至、离别 2024-10-29 18:59:35

最简单的方法可能是将数据捆绑在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文