开源第三方地址: https://github.com/CoderMJLee/MJExtension
- 1 model 创建
#import <Foundation/Foundation.h>
// 次model
@interface ScoreModel : NSObject
@property (nonatomic, strong) NSString *english;
@property (nonatomic, strong) NSString *chinese;
@end
// 主model
@interface UserModel : NSObject
@property (nonatomic, strong) NSString *name; // 一般
@property (nonatomic, strong) ScoreModel *scores; // model 嵌套 model
@property (nonatomic, strong) NSString *eng_score; // 获取 scores 中的 英语成绩,model多级映射
@property (nonatomic, strong) NSArray *scoreArray;// model 嵌套数组
@end
- 2 修改映射路径
model.m 重写
+ (NSDictionary *)mj_replacedKeyFromPropertyName{
// name 是 model 属性 ,XM 是获取数据中的真实key值。
// eng_score 是 model 属性,scores.english 是获取数据中映射路径(scores 是 UserModel 的属性,english 是 ScoreModel 的属性)
return @{@"name":@"XM",
@"eng_score":@"scores.english"};
}
/*
// 或者在 使用model之前添加,代替在 model.m 中 设置。
[UserModel mj_setupReplacedKeyFromPropertyName:^NSDictionary *{
return @{@"name":@"XM",
@"eng_score":@"scores.english"};
}];
*/
- 3 简单使用,举例
NSDictionary *dict = @{
@"name" : @"Jack",
@"address":@"浙大紫金港",
@"age" : @"20",
@"scores":@{@"english":@"99",@"chinese":@"133"},
@"scoreArray":@[@{@"english":@"99",@"chinese":@"133"},
@{@"english":@"98",@"chinese":@"134"},
@{@"english":@"97",@"chinese":@"135"}]
};
UserModel *model = [UserModel mj_objectWithKeyValues:dict];
NSLog(@"%@",model.name);// 一般 model
NSLog(@"%@",model.scores.english);// 嵌套model
NSLog(@"%@",model.eng_score);// 修改 映射
NSLog(@"%@",model.scoreArray[0]);// 嵌套 model 数组
其他
- 1 数组 model 直接 转换
// 直接 通过 一般字典数组 转换成 model 的数组。
NSArray *modelarr = [UserModel mj_objectArrayWithKeyValuesArray:testArray];
- 2 model 属性 特殊处理
model.m 中
- (id)mj_newValueFromOldValue:(id)oldValue property:(MJProperty *)property{
// property 属性名称,oldValue 返回数据
if ([property.name isEqualToString:@"name"]) {
if (oldValue == nil) {
return @"这个没有返回哦";
}
} else if (property.type.typeClass == [NSDate class]) {
NSDateFormatter *fmt = [[NSDateFormatter alloc] init];
fmt.dateFormat = @"yyyy-MM-dd";
return [fmt dateFromString:oldValue];
}
return oldValue;
}
11