私はAFNetworkingを使用して、いくつかのパラメーターとともに画像をPHPスクリプト(CodeIgniterで構築)にアップロードします。PHPスクリプトは、画像を受け取り、ファイル名とパラメーターをデータベースに配置し、画像を永続的な場所に移動します。
これがObj-Cです:
NSURL *url = [NSURL URLWithString:@"http://my_api_endpoint"];
NSData *imageToUpload = UIImageJPEGRepresentation(_mainMedia, .25f);
NSDictionary *params = [[NSDictionary alloc]initWithObjectsAndKeys:
_topicText.text,@"Topic",
@"1",@"Category",
@"1",@"Creator",
nil];
AFHTTPClient *client= [AFHTTPClient clientWithBaseURL:url];
NSString *timeStamp = [NSString stringWithFormat:@"%0.0f.jpg", [[NSDate date] timeIntervalSince1970]];
NSMutableURLRequest *request = [client multipartFormRequestWithMethod:@"POST" path:@"apidebate/debates" parameters:params constructingBodyWithBlock: ^(id <AFMultipartFormData>formData) {
[formData appendPartWithFileData: imageToUpload name:@"MainMedia" fileName:timeStamp mimeType:@"image/jpeg"];
}];
AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:request];
[operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {
NSString *response = [operation responseString];
NSLog(@"response: [%@]",response);
[self dismissViewControllerAnimated:YES completion:nil];
[self.delegate createTopicViewControllerDidCreate:self];
[[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:NO];
} failure:^(AFHTTPRequestOperation *operation, NSError *error) {
[[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:NO];
if([operation.response statusCode] == 403){
NSLog(@"Upload Failed");
return;
}
NSLog(@"error: %@", [operation error]);
[self dismissViewControllerAnimated:YES completion:nil];
[self.delegate createTopicViewControllerDidCreate:self];
}];
[operation setUploadProgressBlock:^(NSInteger bytesWritten, long long totalBytesWritten, long long totalBytesExpectedToWrite) {
NSLog(@"Sent %lld of %lld bytes", totalBytesWritten, totalBytesExpectedToWrite);
float width = totalBytesWritten / totalBytesExpectedToWrite;
}];
[operation start];
PHPは次のとおりです。
//CONTROLLER FROM API
function debates_post()
{
mail('myemailaddress@gmail.com', 'Test', 'Posted');
$tmp_dir = "images/posted/";
if(isset($_FILES['MainMedia'])){
$SaniFileName = preg_replace('/[^a-zA-Z0-9-_\.]/','', basename($_FILES['MainMedia']['name']));
$file = $tmp_dir . $SaniFileName;
move_uploaded_file($_FILES['MainMedia']['tmp_name'], $file);
}
else
$SaniFileName = NULL;
$data = array('Topic'=>$this->post('Topic'), 'MainMedia'=>$this->post('MainMedia'), 'Category'=>$this->post('Category'), 'Creator'=>$this->post('Creator'));
$insert = $this->debate->post_debate($this->post('Topic'), $SaniFileName, $this->post('Category'), $this->post('Creator'));
if($insert){
$message = $this->db->insert_id();
}
else{
$message = 'Insert failed';
}
$this->response($message, 200);
}
//MODEL
function post_debate($Topic=NULL, $MainMedia='', $Category=NULL, $Creator=NULL){
$MainMedia = ($MainMedia)?$MainMedia:'';
$data = array(
'Topic' => $Topic,
'MainMedia' => $MainMedia,
'Category' => $Category,
'Creator' => $Creator,
'Created' => date('Y-m-d h:i:s')
);
return $this->db->insert('debate_table', $data);
}
私の現在の問題は、iOSからのアップロードが完了することはめったになく、完了しない場合のパターンがないことです。パラメータだけで大きな写真や小さな写真を追加したり、写真をまったく追加したりすることはできず、20%の確率で機能します。それが失敗したとき、これは私がX-Codeで受け取るエラーメッセージです:
2012-08-26 01:52:10.698 DebateIt[24215:907] error: Error Domain=NSURLErrorDomain
Code=-1021 "request body stream exhausted" UserInfo=0x1dd7a0d0
{NSErrorFailingURLStringKey=http://my_api_url,
NSErrorFailingURLKey=http://my_api_url,
NSLocalizedDescription=request body stream exhausted,
NSUnderlyingError=0x1e8535a0 "request body stream exhausted"}
これはいったい何ですか?
同じ画像を同じエンドポイントに投稿する基本的なHTMLフォームがあり、どのサイズの画像でも毎回機能します。iOSでは、さまざまなサイズの画像を問題なく使用できるようですが、大小を問わず、おそらく2回目の試行でのみ機能します。
考え?