Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道 iOS 是否支持HTTP 管道,或者我是否必须自己创建请求的正文。multipart/mixed
multipart/mixed
是的,ios 5 支持 HTTP 流水线,但还没有真正尝试过使用它。
是的。
如果您提出请求,您应该指定 httpShouldUsePipelining。
var request = URLRequest(url: URL(string: "SOME_URL")!) request.httpShouldUsePipelining = true