AFNetWorking Failure Error

1531 단어

AFNetWorking 요청 실패


AFNetWorking 요청이 실패하여 NSError 분석으로 돌아갑니다.다음 방법은 관리자의 post 요청을 직접 호출하는 것입니다 - (nullable NSURLSessionDataTask *) POST: (NSString *) URLString parameters: (nullable id) parameters progress: (nullable void (^) (NSProgress *upload Progress) upload Progress success: (nullable void (^) (NSURLSessionDataTask *task, id _Nullable response Object) success failure: (nullable void(^)(NSURLSessionDataTask *_Nullable task, NSError *error))failure;
failure의 블록에 error를 인쇄합니다.userInfo 및 키
NSLog(@"***userInfo***:%@", error.userInfo);
NSLog(@"***userInfo.allKeys***:%@", error.userInfo.allKeys);
2016-08-08 10:05:33.173 jmsfhz_ios[11475:4109574] ***userInfo.allKeys***:(
    NSDebugDescription,
    NSUnderlyingError
)

NSDebugDescription: 이 오류에 대한 설명
다음은 이 밑바닥 error의 userInfo의 keys를 다시 인쇄합니다.
NSLog(@"***underError.userInfo.allKeys***:%@", underError.userInfo.allKeys);
2016-08-08 10:05:33.194 jmsfhz_ios[11475:4109574] ***underError.userInfo.allKeys***:(
    "com.alamofire.serialization.response.error.response",
    NSErrorFailingURLKey,
    "com.alamofire.serialization.response.error.data",
    NSLocalizedDescription
)
"com.alamofire.serialization.response.error.response": 응답체 데이터 하나NSErrorFailingURLKey: 실패한 요청 주소 "com.alamofire.serialization.response.error.data": 실패한 데이터, NSData 유형, 문자열로 변환하여 설명 얻기 NSLocalizedDescription: 오류 설명

좋은 웹페이지 즐겨찾기