我的应用程序从 JSON 创建了一些 ObJC 对象。一切正常,直到我向我的 ObjC 模型类添加了一个新属性,该属性在 JSON 中没有对应项。
我已将映射配置如下:
+ (NSDictionary *)JSONKeyPathsByPropertyKey
{
return @{
@"firstName" : @"firstname",
@"middleName" : @"middlename",
@"lastName" : @"lastname",
// etc.
@"phoneNumber" : NSNull.null // no JSON data for this one
};
}
但是,我在 Mantle 中遇到断言失败,在 MTLJSONAdapter initWithModelClass
中:“phoneNumber 必须映射到 JSON 键路径或键路径的 JSON 数组,得到:null。强>”
这就是我创建模型对象的方式:
MyData *myData = [MTLJSONAdapter modelOfClass:[MyData class]
fromJSONDictionary:json error:&error];
如果不映射到 JSON 值,如何在数据类中拥有 phoneNumber
属性?
只是不要将其映射到 + JSONKeyPathsByPropertyKey
。
关于ios - 来自带有 Mantle : ignore a property 的 JSON 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31305909/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |