在反序列化JSON数据时发生错误

时间:2013-06-20 07:45:21

标签: objective-c json nsjsonserialization

-(void) conn:(NSString *)method{

dispatch_queue_t concurrentQueue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
dispatch_async(concurrentQueue, ^{
    __block NSDictionary *resultBlock = nil;
    dispatch_sync(concurrentQueue, ^{
        /* Download the json here */

        //Create webservice address
        NSString *webService = [_baseURL stringByAppendingString:_webService];
        //NSLog(@"%@", webService);
        //Create error object
        NSError *downloadError = nil;

        //Create the request
        NSMutableURLRequest *req = [self initRequest:webService method:method];

        if(req != nil){
            //Request the json data from the server
            NSData *jsonData = [NSURLConnection
                                    sendSynchronousRequest:req
                                    returningResponse:nil
                                    error:&downloadError];

            if(downloadError!=nil){
                NSLog(@"DOWNLOAD ERROR %@", downloadError);
            }

            NSError *error = nil;
            id jsonObject = nil;

            if(jsonData !=nil){

                /* Now try to deserialize the JSON object into a dictionary */
                jsonObject = [NSJSONSerialization
                                 JSONObjectWithData:jsonData
                                 options:kNilOptions
                                 error: &error];
            }


            //Handel the deserialized object data
            if (jsonObject != nil && error == nil){
                NSLog(@"Successfully deserialized...");
                if ([jsonObject isKindOfClass:[NSDictionary class]]){
                    resultBlock = (NSDictionary *)jsonObject;
                    //NSLog(@"Deserialized JSON Dictionary = %@", resultBlock);
                }
                else if ([jsonObject isKindOfClass:[NSArray class]]){
                    NSArray *deserializedArray = (NSArray *)jsonObject;
                    NSLog(@"Deserialized JSON Array = %@", deserializedArray);
                } else {
                    /* Some other object was returned. We don't know how to deal
                     with this situation, as the deserializer returns only dictionaries
                     or arrays */
                }
            }
            else if (error != nil){
                NSLog(@"An error happened while deserializing the JSON data. %@", error);
            }else{
                NSLog(@"No data could get downloaded from the URL.");
                //[self conn:method];
            }
        }
    });
    dispatch_sync(dispatch_get_main_queue(), ^{

        /* Check if the resultBlock is not nil*/
        if(resultBlock != nil){
            /*Set the value of result. This will notify the observer*/
            [self setResult:resultBlock];
        }
    });
});
}

为什么会出现以下错误?

  

反序列化JSON数据时发生错误。错误   Domain = NSCocoaErrorDomain Code = 3840“操作不可能   完成。 (可可错误3840.)“(JSON文本没有以数组或   允许片段未设置的对象和选项。)UserInfo = 0x20839f80   {NSDebugDescription = JSON文本不是以数组或对象开头的   允许片段未设置的选项。}

当我将其更改为

  /* Now try to deserialize the JSON object into a dictionary */
                jsonObject = [NSJSONSerialization
                                 JSONObjectWithData:jsonData
                                 options:NSJSONReadingAllowFragments
                                 error: &error];
            }

我收到以下错误:

  

反序列化JSON数据时发生错误。错误   Domain = NSCocoaErrorDomain Code = 3840“操作不可能   完成。 (可可错误3840.)“(字符0周围的值无效。)   UserInfo = 0x20888760 {NSDebugDescription =字符周围的值无效   0}

我改变了从LTE到wifi的连接,现在我得到了 504错误和NSLog(@“无法从URL下载数据。”);

1 个答案:

答案 0 :(得分:1)

您应首先在代码中解决这些问题:

  1. 正确检查方法中的错误,这些方法提供指向NSError对象引用的指针作为最后一个参数,例如:- (BOOL) doSomething:(NSError**)error-(NSData*) doSomething:(NSError**)error

    为了正确测试错误,您必须检查方法的返回值 。这些方法表示具有“特殊返回值”的错误条件。例如,他们返回NOnil - 在文档中指定始终。只有在方法指示错误后,提供的错误参数才包含有意义的值 - 也就是说,它指向由该方法创建的NSError对象。请注意,当方法成功时,此参数也可能变为无NULL,在这种情况下,该参数没有“含义”。

  2. Web服务通常可以提供所请求资源的多种格式。如果您没有指定服务器对资源进行编码的格式,则会获得默认格式 - 必然是JSON。

    为了明确所需的资源格式,请设置相应的“Accept”标头。例如,如果您希望采用JSON格式,则可以在请求中设置标题:"Accept: application/json"

  3. Web服务可能有理由不响应您请求的资源。为了确保您获得了所请求的响应,您需要检查状态代码和MIME类型的响应,以确保实际收到JSON响应。

  4. 看来,您对如何使用调度功能有点不确定。如果使用同步方便的方法sendSynchronousRequest:...您当然只需要将其包装在一个dispatch_async函数中。如果您想在主线程上设置结果,您当然希望使用dispatch_async,而不是dispatch_sync。

    但是,如果您改用sendAsynchronousRequest:...,那将会有所改善。并且只有在异步模式下使用NSURLConnection并实现NSURLConnection委托方法 - 我强烈建议 - 它实际上会变得很棒;)

  5. 因此,我认为,一旦修复了代码,您就可以自己回答原始问题,或者从服务器获得更好的错误响应,或者错误神奇地消失了;)