9

我仍在使用 ASIHTTPRequest 并且我正在寻找转移到 AFNetworking 我也经历了Raywenderlich Crash Course 但它没有使用 AFNetworking 2.0

我刚刚尝试了以下示例,该示例在AFNetworking中提到, 但它无法正常工作。

AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];
//manager.responseSerializer.acceptableContentTypes = [NSSet setWithObject:@"text/html"];

NSDictionary *parameters = @{@"UserId": @"24",@"ArticleId":@"0"};

NSLog(@"%@",parameters);



[manager POST:@"http://mysite.com/api/User/showArticleList" parameters:parameters success:^(AFHTTPRequestOperation *operation, id responseObject)
{
    NSLog(@"JSON: %@", responseObject);


}failure:^(AFHTTPRequestOperation *operation, NSError *error)
{
    NSLog(@"Error: %@", error);
}];

调试区显示:

错误域 = NSCocoaErrorDomain 代码 = 3840
“操作无法完成。(可可错误 3840。)”(JSON 文本没有以数组或对象开头,并且允许未设置片段的选项。) UserInfo = 0xa0ba580 {NSDebugDescription = JSON 文本没有以数组或对象和允许未设置片段的选项开头。}

但是当我使用链接时提到 Raywenderlich 速成课程

 [manager POST:@"http://www.raywenderlich.com/downloads/weather_sample/weather.php?format=json" parameters:parameters success:^(AFHTTPRequestOperation *operation, id responseObject)
 {
     NSLog(@"JSON: %@", responseObject);
 }failure:^(AFHTTPRequestOperation *operation, NSError *error)
 {
     NSLog(@"Error: %@", error);
 }];

它给了我完美的 JSON 输出,为什么会这样?

4

2 回答 2

7

我终于找到了解决方案如下 -

 AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];


  NSDictionary *parameters = @{@"UserId": @"24",@"Name":@"Robin"};

  NSLog(@"%@",parameters);
  parameters = nil;

    // if you want to sent parameters you can use above code 

    manager.requestSerializer = [AFJSONRequestSerializer serializer];

    [manager POST:@"http://maps.google.com/maps/api/geocode/json?address=1600+Amphitheatre+Parkway,+Mountain+View,+CA&sensor=false" parameters:parameters success:^(AFHTTPRequestOperation *operation, id responseObject)
    {

        NSLog(@"JSON: %@", responseObject);


   }failure:^(AFHTTPRequestOperation *operation, NSError *error)
   {
        NSLog(@"Error: %@", error);
   }];

对于 text/Html + 如果它不提供正确的 JSON 字符串,您可以将其从字符串中删除并将其转换为数组或字典。

    AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];

        // if you want to sent parameters you can use above code
        manager.responseSerializer.acceptableContentTypes = [manager.responseSerializer.acceptableContentTypes setByAddingObject:@"text/html"];
     // header("Content-Type: application/json");
    //    manager.requestSerializer = [AFJSONRequestSerializer serializer];

        manager.responseSerializer = [AFHTTPResponseSerializer serializer];


        [manager GET:@"your url" parameters:nil success:^(AFHTTPRequestOperation *operation, id responseObject) {

            NSLog(@"responseObject %@",responseObject);

            NSString *jsonString =  [[NSString alloc] initWithData:responseObject encoding:NSUTF8StringEncoding];

            NSString *newJsonString = [jsonString stringByReplacingOccurrencesOfString:@"\\'" withString:@""];

/*
NSRange range = [jsonString rangeOfString:@"}" options:NSBackwardsSearch];
jsonString = [jsonString substringToIndex:range.location + 1];
*/
            NSData *data = [newJsonString dataUsingEncoding:NSUTF8StringEncoding];

            NSError *error;
            NSArray *array = [NSJSONSerialization JSONObjectWithData:data options:0 error:&error];

            NSLog(@"array %@",array);


            if (!array) {
                NSLog(@"Parsing JSON failed: %@", error);
            }

            /*
             NSData *newJSONData = [newJsonString dataUsingEncoding:NSUTF8StringEncoding];
             NSDictionary* json = [NSJSONSerialization
             JSONObjectWithData:newJSONData
             options:NSJSONReadingMutableContainers
             error:&error];
             NSLog(@"json %@",json);
            */

            NSLog(@"responseObject = %@", [[NSString alloc] initWithData:responseObject encoding:NSUTF8StringEncoding]);


        } failure:^(AFHTTPRequestOperation *operation, NSError *error) {

            NSLog(@"%@",[error description]);

        }];

在某些情况下,您需要更改响应字典/数组 - 但有时对象的所有片段都不是可变的。
为此,请执行以下操作。

对于字典

 NSError *error;

                NSData *dataFromDict = [NSJSONSerialization dataWithJSONObject:responce options:NSJSONWritingPrettyPrinted error:&error];

                responseDictionary = [[NSMutableDictionary alloc]init];

                responseDictionary = [NSJSONSerialization JSONObjectWithData:dataFromDict options:NSJSONReadingMutableContainers error:&error];

对于数组

NSError *error;

                NSData *dataFromDict = [NSJSONSerialization dataWithJSONObject:responce options:NSJSONWritingPrettyPrinted error:&error];

                responseArray = [[NSMutableDictionary alloc]init];

                responseArray = [NSJSONSerialization JSONObjectWithData:dataFromDict options:NSJSONReadingMutableContainers error:&error];
于 2013-12-26T16:54:44.157 回答
3

您似乎在服务器端有一个 ASP.NET Web API 服务。它默认返回 XML。

你有两个选择:

  1. 更改 Web 服务的配置,如如何让 ASP.NET Web API 使用 Chrome 返回 JSON 而不是 XML?

  2. 将 HTTP 标头Accept: application/json与您的请求一起发送。

于 2013-10-04T17:53:31.657 回答