2

我正在尝试通过 RestKit 0.20.3 映射对象,但我知道这些日志已经好几天了:

2013-08-12 18:32:08.158 MyAppIphone[848:5703] E restkit.network:RKResponseMapperOperation.m:304 Failed to parse response data: Loaded an unprocessable response (200) with content type 'application/json'

2013-08-12 18:32:08.174 MyAppIphone[848:5703] E restkit.network:RKObjectRequestOperation.m:238 POST 'myUrl' (200 OK / 0 objects) 

[request=0.1305s mapping=0.0000s total=5.6390s]:
error=Error Domain=org.restkit.RestKit.ErrorDomain Code=-1017 "Loaded an unprocessable response (200) with content type 'application/json'" 

UserInfo=0x1ed5a500 {NSErrorFailingURLKey=myUrl, NSUnderlyingError=0x1ed5b240 "The operation couldn’t be completed. (Cocoa error 3840.)", NSLocalizedDescription=Loaded an unprocessable response (200) with content type 'application/json'}

response.body={"my json content"}

这是 MyData 类:

#import <Foundation/Foundation.h>

@interface MyData : NSObject

@property (nonatomic, retain) NSString *criterias;

@end

这是我设置映射器的方法:

- (RKResponseDescriptor*) getDataMapping
{
    // Mapping
    RKObjectMapping *mapping = [RKObjectMapping mappingForClass:[MyData class]];
    [mapping addAttributeMappingsFromDictionary:@{
     @"criteriasHeader":        @"criteriasHeader"
     }];

    // Status code
    NSIndexSet *statusCodes = RKStatusCodeIndexSetForClass(RKStatusCodeClassSuccessful);

    // Descriptior
    return [RKResponseDescriptor responseDescriptorWithMapping:mapping method:RKRequestMethodPOST pathPattern:nil keyPath:@"regions" statusCodes:statusCodes];
}

这是我的请求功能:

- (void) runRequestWithType:(RequestType)type baseUrl:(NSString *)baseUrlString path:(NSString *)path parameters:(NSDictionary *)parameters mapping:(RKResponseDescriptor *) descriptor
{
    // Print heeader and body from the request and the response
    RKLogConfigureByName("RestKit/Network", RKLogLevelTrace);
    RKLogConfigureByName("Restkit/Network", RKLogLevelDebug);
    RKLogConfigureByName("RestKit/ObjectMapping", RKLogLevelTrace);
    RKLogConfigureByName("Restkit/ObjectMapping", RKLogLevelDebug);

    // Set up the base url
    NSURL *baseUrl = [NSURL URLWithString:baseUrlString];

    //Run request in block
    RKObjectManager *manager = [RKObjectManager managerWithBaseURL:baseUrl];
    [manager addResponseDescriptorsFromArray:@[descriptor]];

    [manager.router.routeSet addRoute:[RKRoute routeWithClass:[MyData class] pathPattern:path method:RKRequestMethodPOST]];
    //[manager getObjectsAtPath:path parameters:parameters success:^(RKObjectRequestOperation *operation, RKMappingResult *mappingResult) {
    [manager postObject:nil path:path parameters:parameters success:^(RKObjectRequestOperation *operation, RKMappingResult *mappingResult) {
        if ([self.delegate respondsToSelector:@selector(requestDidSucceedWithType:andResponse:)]) {
            [self.delegate requestDidSucceedWithType:type andResponse:[mappingResult firstObject]];
        }
    } failure:^(RKObjectRequestOperation *operation, NSError *error) {
        if ([self.delegate respondsToSelector:@selector(requestDidFailWithError:andError:)]) {
            [self.delegate requestDidFailWithType:type andError:error];
        }
    }];
}

PS:我尝试使用较短的 JSON,效果很好。

我做错什么了吗?

你能帮帮我吗,谢谢。

4

2 回答 2

1

希望您能够将 JSON 的服务器编码更改为 UTF-8。

如果没有,您可以通过替换 Restkit 中的默认 JSON mime 类型处理程序来解决此问题。使用 Restkit 类RKNSJSONSerialization作为参考。

在您的自定义 JSON mime 类型处理程序中,执行从传入编码(在下面的 ISO-8859-1 示例中)到 UTF-8 的数据转换,然后再执行与RKNSJSONSerialization类相同的操作。

@implementation MyCustomJSONSerializer    

+ (id)objectFromData:(NSData *)data error:(NSError **)error
{
    NSString* latin = [[NSString alloc] initWithBytes:[data bytes] length:[data length] encoding:NSISOLatin1StringEncoding];

    NSData* utf8 = [latin dataUsingEncoding:NSUTF8StringEncoding];

    return [NSJSONSerialization JSONObjectWithData:utf8 options:0 error:error];
}

@end

dataFromObject如果您必须以非 UTF-8 编码将数据 POST 回服务器,则可以对该方法执行类似操作。

您现在可以在初始化 Restkit添加此自定义处理程序,它将与默认 (UTF-8) 相比使用:

[RKMIMETypeSerialization registerClass:[MyCustomJSONSerializer class] forMIMEType:RKMIMETypeJSON];
于 2014-05-09T20:35:16.747 回答
1

这种错误来自RK下的JSON映射。默认是使用封装在 RKNSJSONSerialization 中的 NSJSONSerialization。您可以在此处放置一个断点,以了解有关该错误的更多信息。到目前为止,我找到了 2 个来源:

  • NSJSONSerialization 不喜欢非 UTF8 数据。确保您要么从服务器接收它,要么修改 RK 以进行从数据到字符串(使用正确编码)到 UTF8 数据(我迄今为止最好的方式)的正确转换。如果使用 CoreData,您可以查看第 586 行的 RKManagedObjectRequestOperation。
  • 在 iOS5 中存在错误。最简单的解决方法是使用另一个解析库
于 2013-09-03T14:59:57.897 回答