菜鸟教程小白 发表于 2022-12-13 00:49:38

ios - AFNetworking 应用程序/json


                                            <p><p>使用 iOS,我正在尝试与请求 3 个 header 后跟 JSON POST 数据的 Web 服务进行通信。</p>

<p>我查看了以下将字典转换为 JSON 文件的 AFNetworking 片段。在这种情况下,我正在尝试发布 header 和 JSON 文件。如果您有任何建议,请告诉我:</p>

<pre><code>NSURL *url = ;
AFHTTPClient *httpClient = [ initWithBaseURL:url];
httpClient.parameterEncoding = AFJSONParameterEncoding;
NSDictionary *params = @{@&#34;brand-id&#34; : Brand_Id, @&#34;api-key&#34; : API_Key, @&#34;Content-Type&#34; : @&#34;application/json&#34;};
NSMutableURLRequest *request = ;
AFHTTPRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSURLResponse *response, id JSON) {
    NSLog(@&#34;success&#34;);
} failure:^(NSURLRequest *request, NSURLResponse *response, NSError *error, id JSON) {
    NSLog(@&#34;error&#34;);
}];
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您应该将 HTTPheader 字段添加到 <code>NSMutableURLRequest</code>。</p>

<pre><code>;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - AFNetworking 应用程序/json,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/14715372/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/14715372/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - AFNetworking 应用程序/json