【发布时间】:2017-10-11 11:05:56
【问题描述】:
我正在尝试调用网络服务并上传图片,
映射有问题,我花了好几个小时都没有成功。我得到的错误是:
错误域=org.restkit.RestKit.ErrorDomain 代码=1001 "不可映射 在搜索的关键路径中找到了对象表示。” UserInfo={NSLocalizedDescription=没有可映射的对象表示 在搜索的关键路径中找到。, NSLocalizedFailureReason=The 映射操作找不到任何嵌套对象表示 在搜索的关键路径处:用户输入到 发现映射器在 以下关键路径:消息、成功 这可能表明您 为您的映射配置了错误的关键路径。keyPath=null, 详细错误=( )}
还有调用网络服务的方法
[SVProgressHUD show];
[delegate.objectManager.HTTPClient.defaultHeaders setValue:@"application/x-www-form-urlencoded" forKey:@"content-type" ];
RKObjectMapping *responseMapping = [RKObjectMapping mappingForClass:[SignUpResponse class]]; //create response and request mapping
[responseMapping addAttributeMappingsFromDictionary:@{@"phone": @"phone",
@"device_type": @"device_type",
@"device_token": @"device_token",
@"type": @"type",
@"email": @"email",
@"identity": @"identity",
@"date": @"date",
@"status": @"status",
@"name": @"name",
@"activation": @"activation",
@"image": @"image",
@"id": @"id"
}];
RKResponseDescriptor *responseDescriptor = [RKResponseDescriptor responseDescriptorWithMapping:responseMapping
method:RKRequestMethodPOST
pathPattern:@"AgentRegister"
keyPath:@"user"
statusCodes:[NSIndexSet indexSetWithIndex:200]];
[delegate.objectManager.defaultHeaders setValue:@"application/x-www-form-urlencoded" forKey:@"content-type" ];
delegate.objectManager.requestSerializationMIMEType =RKMIMETypeFormURLEncoded;
[delegate.objectManager removeResponseDescriptor:responseDescriptor];
[delegate.objectManager addResponseDescriptor:responseDescriptor];
NSString *fcmToken = [FIRInstanceID instanceID].token;
SignUpRequest *signUpRequest = [[SignUpRequest alloc]init];
signUpRequest.phone = txtPhoneNumber.text;
signUpRequest.email = txtEmail.text;
signUpRequest.identity=txtIdOrCity.text;
signUpRequest.device_type=@"IOS";
signUpRequest.device_token=fcmToken;
signUpRequest.type=@"1";
UIImage *image = [UIImage imageNamed:@"Logo"];
// Serialize the Article attributes then attach a file
NSMutableURLRequest *request = [[RKObjectManager sharedManager] multipartFormRequestWithObject:signUpRequest method:RKRequestMethodPOST path:@"AgentRegister" parameters:nil constructingBodyWithBlock:^(id<AFMultipartFormData> formData) {
[formData appendPartWithFileData:UIImagePNGRepresentation(image)
name:@"image"
fileName:@"photo.png"
mimeType:@"application/x-www-form-urlencoded"];
}];
RKObjectRequestOperation *operation = [[RKObjectManager sharedManager] objectRequestOperationWithRequest:request success:^(RKObjectRequestOperation *operation, RKMappingResult *mappingResult){
[SVProgressHUD dismiss];
if(mappingResult.array.count !=0){
[self performSegueWithIdentifier:@"goToVerify" sender:self];
}else{
}
[delegate.objectManager removeResponseDescriptor:responseDescriptor];
}failure:^(RKObjectRequestOperation *operation, NSError *error){
[SVProgressHUD dismiss];
NSLog(@"%@",error.description);
UIAlertController *alert = [UIAlertController alertControllerWithTitle:@".."
message:@"حدث خطاء ما .. حاول مرة اخري" preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"Ok" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
}];
[alert addAction:okAction];
[self presentViewController:alert animated:YES completion:nil];
[delegate.objectManager removeResponseDescriptor:responseDescriptor];
}];
[[RKObjectManager sharedManager] enqueueObjectRequestOperation:operation];
}
【问题讨论】:
标签: ios objective-c iphone rest web-services