0

在我将 Mantle 更新到 2.0 后,以下解析 JSON 的代码不再适用于我。它们可以在较旧的 Mantle 版本上正常工作(我不记得正确的版本号。我所知道的是我在 2013 年 11 月下载了它。)

这是 JSON 内容:

{
    date = "2015-05-21";
    error = 0;
    results = (
            {
            currentCity = "beijing";
            index = (
                {
                    des = "desc1";
                    tipt = "tipt1";
                    title = "title1";
                    zs = "zs1";
                },
                {
                    des = "desc2";
                    tipt = "tipt2";
                    title = "title2";
                    zs = "zs2";
                },
                {
                    des = "desc3";
                    tipt = "tipt3";
                    title = "title3";
                    zs = "zs3";
                }
            );         
        }
    );
    status = success;
}

我定义的模型:

// .h
#import "MTLModel.h"
#import "Mantle.h"

@interface BaiduWeatherResults : MTLModel<MTLJSONSerializing>

@property (nonatomic, strong) NSNumber *error;
@property (nonatomic, strong) NSString *status;
@property (nonatomic, strong) NSString *date;
@property (nonatomic, strong) NSString *currentCity;

@end


// .m
#import "BaiduWeatherResults.h"

@implementation BaiduWeatherResults

+ (NSDictionary *)JSONKeyPathsByPropertyKey
{
    return @{
             @"error"   : @"error",
             @"status"  : @"status",
             @"date"    : @"date",
             @"currentCity" : @"results.currentCity",
             };
}

+ (NSValueTransformer *) currentCityJSONTransformer
{
    return [MTLValueTransformer reversibleTransformerWithForwardBlock:^(NSArray *values) {
        return [values firstObject];
    } reverseBlock:^(NSString *str) {
        return @[str];
    }];
}

将 JSON 解析为模型

id results =[MTLJSONAdapter modelOfClass:[BaiduWeatherResults class]
                        fromJSONDictionary:responseObject
                                     error:nil];

NSLog(@"results:%@", results);

我的问题:

这些代码可以在较旧的 Mantle 上工作。在 Mantle 2.0 上,一旦我将 @"currentCity" : @"results.currentCity" 添加到 JSONKeyPathsByPropertyKey 返回的字典中,解析就会失败。有人知道我在解析中错过了什么吗?

顺便说一句,解析开始时 currentCityJSONTransformer 确实调用了。但从未使用过转换器,因为“return [values firstObject];”这一行 永远不会被执行。

提前致谢。

4

1 回答 1

1

试试这个 -

+ (NSDictionary *)JSONKeyPathsByPropertyKey
{
    return @{
             @"error"   : @"error",
             @"status"  : @"status",
             @"date"    : @"date",
             @"currentCity" : @"results",
             };
}

+ (NSValueTransformer *) currentCityJSONTransformer
{
    return [MTLValueTransformer reversibleTransformerWithForwardBlock:^(NSArray *values) {
        NSDictionary *cityInfo = [values firstObject];
        return cityInfo[@"currentCity"];
    } reverseBlock:^(NSString *str) {
        return @[@{@"currentCity" : str}];
    }];
}

由于 results 是一个字典数组,因此您无法currentCity通过JSONKeyPathsByPropertyKey. 相反,currentCityJSONTransformer它会在结果数组中找到第一个字典并返回它的值currentCity。您可能想要添加类型检查并@"currentCity"在一个地方定义键。

于 2015-05-21T11:19:46.297 回答