iphone 帖子多部分
我正在尝试使用分段发布方法上传图像和其他详细信息。我浏览了以下链接
http://lists.apple.com /archives/web-dev/2007/Dec/msg00017.html
但我无法将其调整为我想要的方式,因为我无法理解内容配置之类的事情。我用于发送其他详细信息的代码如下。
postString = [NSString stringWithFormat:@"u=username&p=pass&color=red&date=12];
我需要发送此内容以及图库中的图片。我正在使用 ALAsset 来访问图像。请帮忙。我是 iPhone 中的新蜜蜂
I am trying to upload image and other details using the multipart post method. I went through the following link
http://lists.apple.com/archives/web-dev/2007/Dec/msg00017.html
But I am just not able to tweak it to how I want it as I am not able to under stand the content-disposition and things like that. My code for sending the other details are here below.
postString = [NSString stringWithFormat:@"u=username&p=pass&color=red&date=12];
I need to send this as well as an image from the gallery. I am using ALAsset to access the image. PLease help. I am a new bee in iphone
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 ASIHTTPRequest 来上传分段文件。这很容易。
You can use ASIHTTPRequest to upload file with multipart. It's pretty easy.