本文介绍了如何发送带有帖子请求的多个文件? (objective-c,iOS)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想发送帖子请求,但我需要发送多个文件,
怎么做?

I want to sent post request, but i need to send multiple files, how to do this?

tnx

推荐答案

使用众多资源之一,如何为POST数据配置 NSMutableURLRequest 。 Content-Type标题应为multipart / form-data,每个文件将依次与适当的部分标题连接在一起。 RFC2388是相关标准。

Use one of the many resources on how to configure an NSMutableURLRequest for POSTing data. The Content-Type header should be "multipart/form-data", and each file will be concatenated in turn with an appropriate part header. RFC2388 is the relevant standard.

这篇关于如何发送带有帖子请求的多个文件? (objective-c,iOS)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-24 20:01