我希望用 ASIHttp post multi files 是否可以。对于一个文件,我知道代码是:
[request setFile:[documentsDirectory stringByAppendingPathComponent:@"img1.png"] forKey:@"img"];
所有图像文件都有相同的键“img”
欢迎任何评论
我希望用 ASIHttp post multi files 是否可以。对于一个文件,我知道代码是:
[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];
您可以为此创建多个请求对象。