AFNetworking 使用 JSON 到 PHP 服务器的参数
Posted
技术标签:
【中文标题】AFNetworking 使用 JSON 到 PHP 服务器的参数【英文标题】:Parameter using JSON to PHP server with AFNetworking 【发布时间】:2013-10-20 04:25:23 【问题描述】:我想通过 AFNetworking 将使用 JSON 的 NSDictionary 或 NSArray 参数发送到 php 服务器
【问题讨论】:
【参考方案1】:AFHTTPClient *httpClient = [[AFHTTPClient alloc] initWithBaseURL:[NSURL URLWithString:@"https://www.url.com/"]];
NSDictionary *parameter = @@"key1":@"value1", @"key2",@"value2";
[httpClient setParameterEncoding:AFJSONParameterEncoding];
[httpClient registerHTTPOperationClass:[AFJSONRequestOperation class]];
[httpClient postPath:@"some/path" parameters:parameter success:^(AFHTTPRequestOperation *operation, id responseObject)
....
failure:^(AFHTTPRequestOperation *operation, NSError *error)
....
];
【讨论】:
以上是关于AFNetworking 使用 JSON 到 PHP 服务器的参数的主要内容,如果未能解决你的问题,请参考以下文章
AFNetworking 2.0 将 [] 方括号添加到发送到服务器的 json
AFNetworking JSON 到 UITableView - Objective-C