菜鸟教程小白 发表于 2022-12-13 00:11:33

ios - AFNetworking 请求 API iOS


                                            <p><p>我正在向服务器发出请求,服务器返回一个 JSON。 AFNetworking 框架返回格式错误的 JSON。</p>

<p>这是服务器发送的内容:</p>

<pre><code>{&#34;email&#34;:&#34;XXXXXXX&#34;,&#34;firstName&#34;:&#34;XXXXXX&#34;,&#34;lastName&#34;:&#34;XXXXXXX&#34;,&#34;gender&#34;:&#34;male&#34;,&#34;userToken&#34;:&#34;XXXXXXXXXXX&#34;}
</code></pre>

<p>这是 AFNetworking 收到的:</p>

<pre><code>{
email = &#34;XXXXXXX&#34;;
firstName = XXXXXX;
gender = male;
lastName = XXXXXXX;
token = XXXXXXXXXXXX;
}
</code></pre>

<p>我的代码:</p>

<pre><code>AFHTTPClient *client = [ initWithBaseURL:];

NSURLRequest *request = ;
AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {            
      NSLog(@&#34;%@&#34;, JSON);

    } failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON) {         
      NSLog(@&#34;Request Failed with Error: %@, %@&#34;, error, error.userInfo);

    }];
;
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您要打印的对象是从服务器接收到的 JSON 的 NSDictionary 表示。 </p>

<p>如果你想查看从服务器返回的原始 JSON,你应该查看操作的 responseString:</p>

<pre><code>NSLog(@&#34;%@&#34;, operation.responseString);
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - AFNetworking 请求 API iOS,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/14024493/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/14024493/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - AFNetworking 请求 API iOS