标签:replace lan intval ... kvc tab copy gre option
后台使用orc 数据库...对于没有赋值的字段,会返回<null>
直接使用苹果自带的kvc 去将数据转模型,,会crash [model setValuesForKeysWithDictionary:dataDic];
虽然后台也会尽量避免传回<null> ,但是作为程序员应该严谨对待每一个可能崩溃的问题.
有 解决方案 就是在每一个 可能传回null 的地方 使用 if([m_result isEqual:[NSNUll null]]) 去判断,但这不是一个有追求的程序员会满足的方式..
网上传说老外写了一个Category,叫做NullSafe..只支持到ios9,3 ,实测 并没有解决我的问题..
还有通过在AFN 里面 AFJSONResponseSerializer的 serializerWithReadingOptions:方法中添加
serializer.removesKeysWithNullValues = YES; 实测 也并没有解决此问题
最后在stack overflow 上找到解决方案.将其写的两个方法 放入数组和字典的category里面. 完美解决..在每次请求回来数据,,统一处理..
废话不多说,上代码
@implementation NSDictionary (null)
- (NSDictionary *)dictionaryByReplacingNullsWithBlanks {
const NSMutableDictionary *replaced = [self mutableCopy];
const id nul = [NSNull null];
const NSString *blank = @"";
for (NSString *key in self) {
id object = [self objectForKey:key];
if (object == nul) [replaced setObject:blank forKey:key];
else if ([object isKindOfClass:[NSDictionary class]]) [replaced setObject:[object dictionaryByReplacingNullsWithBlanks] forKey:key];
else if ([object isKindOfClass:[NSArray class]]) [replaced setObject:[object arrayByReplacingNullsWithBlanks] forKey:key];
}
return [NSDictionary dictionaryWithDictionary:[replaced copy]];
}
@implementation NSArray (null)
- (NSArray *)arrayByReplacingNullsWithBlanks {
NSMutableArray *replaced = [self mutableCopy];
const id nul = [NSNull null];
const NSString *blank = @"";
for (int idx = 0; idx < [replaced count]; idx++) {
id object = [replaced objectAtIndex:idx];
if (object == nul) [replaced replaceObjectAtIndex:idx withObject:blank];
else if ([object isKindOfClass:[NSDictionary class]]) [replaced replaceObjectAtIndex:idx withObject:[object dictionaryByReplacingNullsWithBlanks]];
else if ([object isKindOfClass:[NSArray class]]) [replaced replaceObjectAtIndex:idx withObject:[object arrayByReplacingNullsWithBlanks]];
}
return [replaced copy];
}
use method simple
在封装的网络请求获取到后台数据的地方 将数据处理一下
NSData *data = [NSJSONSerialization JSONObjectWithData:jsonData options:NSJSONReadingMutableContainers error:&error]; NSLog(@"error :%@", error);
//生成字典 NSDictionary *responseDic = (NSDictionary *)data;
//处理后台返回数据里面有的情况
NSDictionary *dic = [responseDic dictionaryByReplacingNullsWithBlanks];
NSDictionary *respondsData = dic[@"data"];
NSDictionary *status = dic[@"status"];
NSInteger code = [[status objectForKey:@"code"] intValue];
NSLog(@"codeStr----%ld...%@",(long)code,respondsData);
if (code == 200){
if (successBlock) {
successBlock(dic);
}
} else
{
NSDictionary *status = dic[@"status"];
NSString *alertResult = [status objectForKey:@"message"];
//防止为空的提示
if(alertResult.length >1){
[XDProgressHUD showToastWithTitle:[NSString stringWithFormat:@"%@", alertResult]];
}
}
在踩过后台传回nsnull 这个坑之后,项目中很多涉及到金额 的字段 有的后台返回的是字符串,有的是返回的double 类型,float类型..问题来了..字符串的金额是没有问题的.但是如果是double flaot 类型 ,,金额数字在经过 [NSJSONSerialization JSONObjectWithData:jsonData options:NSJSONReadingMutableContainers error:&error]; 这个 ios 自带的json 解析之后 会遭遇 ( 6.66 变成 6.59999999999999),此问题 安卓不会有 ,所以非常恶心,,需要自己再去处理 或者跟后台商量改成字符串类型,,(强烈建议 如果后台返回的数据 是float double 尽量使用字符串 不要使用 float double 避免出现精度丢失),,遭遇此问题 我的解决方案 是基于上面处理nsnull 问题的方案 ,,上代码
- (NSDictionary *)dictionaryByReplacingNullsWithBlanks {
const NSMutableDictionary *replaced = [self mutableCopy];
const id nul = [NSNull null];
const NSString *blank = @"";
for (NSString *key in self) {
id object = [self objectForKey:key];
if (object == nul) [replaced setObject:blank forKey:key];
else if ([object isKindOfClass:[NSDictionary class]]) [replaced setObject:[object dictionaryByReplacingNullsWithBlanks] forKey:key];
else if ([object isKindOfClass:[NSArray class]]) [replaced setObject:[object arrayByReplacingNullsWithBlanks] forKey:key];
if([object isKindOfClass:[NSNumber class]]){
// 如果后台返回有 double float类型,,此步骤时候 经过ios 自带json解析(6.66 就已经变成了6.5999999999) 下面的方法 全局处理 保留三位小数精度,,相当于还原了 ios自带json 解析丢失精度的问题,亲测有效)
double conversionValue = (double)[object floatValue];
NSString *d2Str = [NSString stringWithFormat:@"%.3lf",conversionValue];
NSDecimalNumber *num1 = [NSDecimalNumber decimalNumberWithString:d2Str];
NSString *strD2 = [num1 stringValue];
[replaced setObject:strD2 forKey:key];
}
}
return [NSDictionary dictionaryWithDictionary:[replaced copy]];
}
转自:http://www.jianshu.com/p/e8e113a94e1d
标签:replace lan intval ... kvc tab copy gre option
原文地址:http://www.cnblogs.com/huangzs/p/7450885.html