我们尝试将图像从 iphone 应用程序上传到 php 脚本。在wifi连接上,一切顺利。但在 3G 连接中,大约 50% 的时间会失败。(我们的 3G 非常稳定)我们在其他帖子中看到了一些评论,但似乎无法正常工作。任何人都可以提供一些建议吗?
[asirequest setData:imageData withFileName:[NSString stringWithFormat:@"%@.png",[name objectAtIndex:0]] andContentType:@"image/png" forKey:@"filedata"];
我们试图限制 3G 带宽:
[ASIHTTPRequest setShouldThrottleBandwidthForWWAN:YES];
但上传变得很慢。仍然失败了大约 50% 的时间。在 wifi 中,上传时间不到 10 秒,并且始终有效。
thx 一百万。