菜鸟教程小白 发表于 2022-12-12 21:14:19

ios - 将 JSON 数据发送到 URL


                                            <p><p>我有一个特定的 URL “http://dev.mycompany.com”,我需要向它发送一些数据(JSON 格式)并获得响应。</p>

<p>我无法通过 SO 上的大量文档和相关问题找到出路。我已经设法使用 NSURLConnection 获取数据(不发送任何数据)并且效果很好,到目前为止我的代码与 <a href="https://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/URLLoadingSystem/Tasks/UsingNSURLConnection.html" rel="noreferrer noopener nofollow">https://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/URLLoadingSystem/Tasks/UsingNSURLConnection.html</a> 上的代码几乎相同所以我没有看到发布我拥有的代码的任何意义。</p>

<p>我无法将一些字符串附加到我的 URL,因为我需要发送的数据是 JSON 数据。如果我听起来像个菜鸟,我很抱歉,但我在 Obj-C 和服务器通信方面的经验很少。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您应该将它们作为参数发送到帖子 NSUrlRequest</p>

<p>如下:</p>

<pre><code>NSURL *aUrl = ;
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:aUrl
                                       cachePolicy:NSURLRequestUseProtocolCachePolicy
                                     timeoutInterval:60.0];
;
NSString *postString = @&#34;yourVarialbes=yourvalues&#34;;
];

NSURLConnection *connection= [ initWithRequest:request
                                                             delegate:self];
;
</code></pre>

<p>用于发送 JSON
请阅读
<a href="https://stackoverflow.com/questions/4456966/how-to-send-json-data-in-the-http-request-using-nsurlrequest" rel="noreferrer noopener nofollow">How to send json data in the Http request using NSURLRequest</a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 将 JSON 数据发送到 URL,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/10864497/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/10864497/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 将 JSON 数据发送到 URL