서버 데이터 정밀도 손실

1723 단어 iOS
백그라운드 서버가 float/double 형식으로 데이터를 되돌려주면 OC 수신이 나타납니다.0000001 정밀도 분실 문제는 NSNumber의 description 방법이 엄격하지 않고 호출할 때 찍힌 정밀도 분실이라는 자료를 찾았습니다.
해결 방법:
1. 서버를 String 유형 데이터로 통합 반환
2. 우리는 스스로 처리한다.서버가 float/double 유형으로 되돌아올 때 NSDecimalNumber 처리를 이용하여 정밀도 분실 문제를 해결합니다
NSString *value = [NSString stringWithFormat:@"%lf",  .doubleValue];

NSDecimalNumber *decimalNumber = [[NSDecimalNumber alloc] initWithString:value];

NSLog(@"%@", decimalNumber.stringValue);

 
프로젝트에서 제가 사용한 것은 MJExtension 모델 변환 대상입니다. MJPropertyKey를 찾으십시오.m 파일, valueInObject:메서드 수정,
- (id)valueInObject:(id)object
{
    if ([object isKindOfClass:[NSDictionary class]] && self.type == MJPropertyKeyTypeDictionary) {
        
        NSString *value = [NSString stringWithFormat:@"%@", object[self.name]];
        NSScanner *scan = [NSScanner scannerWithString:value];
        float f;
        double d;
        //  value 
        if (([scan scanFloat:&f] && [scan isAtEnd]) || [scan scanDouble:&d] && [scan isAtEnd])
        {
            value = [NSString stringWithFormat:@"%lf", [object[self.name] doubleValue]];
            // NSDecimalNumber 
            NSDecimalNumber *decimalNumber = [[NSDecimalNumber alloc] initWithString:value];
            return decimalNumber.stringValue;
        }
        
        return object[self.name];
    } else if ([object isKindOfClass:[NSArray class]] && self.type == MJPropertyKeyTypeArray) {
        NSArray *array = object;
        NSUInteger index = self.name.intValue;
        if (index < array.count) return array[index];
        return nil;
    }
    return nil;
}

좋은 웹페이지 즐겨찾기