0

我希望用 ASIHttp post multi files 是否可以。对于一个文件,我知道代码是:

     [request setFile:[documentsDirectory stringByAppendingPathComponent:@"img1.png"] forKey:@"img"];

所有图像文件都有相同的键“img”

欢迎任何评论

4

3 回答 3

1

您可以像这样多次调用此方法:

for(int i=0; i<3 i++)
    [uploadRequest setFile:docFile forKey:[NSString stringWithFormat:@"uploadfile%d",i]];
于 2012-04-05T09:39:58.870 回答
0
[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];
于 2012-04-05T09:42:15.570 回答
0

您可以为此创建多个请求对象。

于 2012-04-05T09:37:38.610 回答