iPhone-在 POST 中将 JSON 对象发送到 PHP 服务器

发布于 2024-10-31 06:02:12 字数 138 浏览 1 评论 0原文

我想发送我的联系人列表,其中包含每个号码的所有号码。

我正在尝试将 JSON 对象(包含我的所有数据)发送到 PHP 文件并使用 json_decode 函数进行解码。

是否可以使用JSON通过HTTP请求中的POST发送到服务器

I would like to send my contact list with all numbers for each numbers.

I'm trying to send a JSON Object (with all my data) to a PHP file and to decode with the json_decode function.

Is it possible to use JSON to send to a server by POST in HTTPrequest

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

丑丑阿 2024-11-07 06:02:12

是否可以使用JSON通过HTTP请求中的POST发送到服务器

JSON 只是文本。您可以通过 POST 发送文本,对吗?然后就可以发送 JSON 了。

Is it possible to use JSON to send to a server by POST in HTTPrequest

JSON is just text. You can send text via POST, right? Then you can send JSON.

2024-11-07 06:02:12

您可以使用 JSON.stringify 从 JavaScript 对象创建字符串。

例如 JSON.stringify({field1:"a", field2:"b"})

我会使用任何像 jQuery 这样的库将 JSON 数据发布到服务器。

这能回答你的问题吗?

You can use JSON.stringify to create a String from a JavaScript Object.

E.g. JSON.stringify({field1:"a", field2:"b"})

I would use any library like jQuery to post JSON data to the server.

Does that answer your question?

你的背包 2024-11-07 06:02:12

首先,正如@Charles所说,JSON是一个字符串。只要它是可以在服务器上检索的 POST 的一部分,就足够了。

ASIHTTPRequest 是一个很棒的库,用于处理从 iPhone 发送到服务器的 POST 数据。以下是如何发送 POST 的示例:http://allseeing-i。 com/ASIHTTPRequest/How-to-use#sending_a_form_post_with_ASIFormDataRequest

这是一个与将 NSString 编码为 JSON 相关的问题:使用 JSON-Framework 将 NSMutableArray 作为 JSON 发送

First of all, as @Charles said, JSON is a string. As long as it's part of a POST which you can retrieve on your server, it should be enough.

ASIHTTPRequest is a great library for handling POST data sent from the iPhone to your server. Here's an example on how to send a POST: http://allseeing-i.com/ASIHTTPRequest/How-to-use#sending_a_form_post_with_ASIFormDataRequest

Here's a question related to encoding a NSString to JSON: Send NSMutableArray as JSON using JSON-Framework

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