ASIHttpポストマルチファイルを利用したいのですが可能ですか?1 つのファイルのコードは次のとおりです。
[request setFile:[documentsDirectory stringByAppendingPathComponent:@"img1.png"] forKey:@"img"];
すべての画像ファイルは同じキー "img" を持ちます
コメント歓迎
ASIHttpポストマルチファイルを利用したいのですが可能ですか?1 つのファイルのコードは次のとおりです。
[request setFile:[documentsDirectory stringByAppendingPathComponent:@"img1.png"] forKey:@"img"];
すべての画像ファイルは同じキー "img" を持ちます
コメント歓迎
次のように、このメソッドを複数回呼び出すことができます。
for(int i=0; i<3 i++)
[uploadRequest setFile:docFile forKey:[NSString stringWithFormat:@"uploadfile%d",i]];
このために複数のリクエストオブジェクトを作成できます。
[self setNetworkQueue:[ASINetworkQueue queue]];
[[self networkQueue] setDelegate:self];
for (int i=1; i<numberoffiles; i++)
{
NSString* filename = [NSString stringWithFormat:@"img%d.jpg", i];
NSString *path = [[NSHomeDirectory() stringByAppendingPathComponent:@"Documents"] stringByAppendingPathComponent:filename];
[request setFile:path forKey:[NSString stringWithFormat:@"fileCount%d", i]];
[[self networkQueue] addOperation:request];
}
[[self networkQueue] go];