iPhone-在 POST 中将 JSON 对象发送到 PHP 服务器
我想发送我的联系人列表,其中包含每个号码的所有号码。
我正在尝试将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
JSON 只是文本。您可以通过 POST 发送文本,对吗?然后就可以发送 JSON 了。
JSON is just text. You can send text via POST, right? Then you can send JSON.
您可以使用 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?
首先,正如@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