根据另一个属性的地幔属性类?

时间:2014-09-30 13:52:48

标签: ios objective-c json github-mantle

如何使用Github Mantle根据同一类中的其他属性选择属性类? (或者更坏的情况是JSON对象的另一部分)。

例如,如果我有这样的对象:

{
  "content": {"mention_text": "some text"},
  "created_at": 1411750819000,
  "id": 600,
  "type": "mention"
}

我想制作一个这样的变压器:

+(NSValueTransformer *)contentJSONTransformer {
    return [MTLValueTransformer transformerWithBlock:^id(NSDictionary* contentDict) {
          return [MTLJSONAdapter modelOfClass:ETMentionActivityContent.class fromJSONDictionary:contentDict error:nil];
    }];
}

但传递给变换器的字典只包含JSON的'content'部分,因此我无法访问'type'字段。反正有没有访问对象的其余部分?或者以某种方式将“内容”的模型类基于“类型”?

我之前被迫做过这样的黑客攻击解决方案:

+(NSValueTransformer *)contentJSONTransformer {
    return [MTLValueTransformer transformerWithBlock:^id(NSDictionary* contentDict) {
        if (contentDict[@"mention_text"]) {
            return [MTLJSONAdapter modelOfClass:ETMentionActivityContent.class fromJSONDictionary:contentDict error:nil];
        } else {
            return [MTLJSONAdapter modelOfClass:ETActivityContent.class fromJSONDictionary:contentDict error:nil];
        }
    }];
}

2 个答案:

答案 0 :(得分:5)

您可以通过修改JSONKeyPathsByPropertyKey方法传递类型信息:

+ (NSDictionary *)JSONKeyPathsByPropertyKey
{
    return @{
        NSStringFromSelector(@selector(content)) : @[ @"type", @"content" ],
    };
}

然后在contentJSONTransformer中,您可以访问"类型"属性:

+ (NSValueTransformer *)contentJSONTransformer 
{
    return [MTLValueTransformer ...
        ...
        NSString *type = value[@"type"];
        id content = value[@"content"];
    ];
}

答案 1 :(得分:0)

我遇到了类似的问题,我怀疑我的解决方案并不比你的好。

我有一个Mantle对象的公共基类,在构造每个对象之后,我调用一个configure方法,让他们有机会设置依赖于多个“base”(== JSON)属性的属性。

像这样:

+(id)entityWithDictionary:(NSDictionary*)dictionary {

    NSError* error = nil;
    Class derivedClass = [self classWithDictionary:dictionary];
    NSAssert(derivedClass,@"entityWithDictionary failed to make derivedClass");
    HVEntity* entity = [MTLJSONAdapter modelOfClass:derivedClass fromJSONDictionary:dictionary error:&error];
    NSAssert(entity,@"entityWithDictionary failed to make object");
    entity.raw = dictionary;
    [entity configureWithDictionary:dictionary]; // Give the new entity a chance to set up derived properties
    return entity;
}