afnetwork上传图片
发布时间: 2024-12-06 22:47:48
㈠ ios文件写操作和文件上传到服务器
你所阐述的问题 就是指的是 向服务器传一个文件。 多用post 请求。用 自带的NSURLConnection 或者ASI 等 都可以。你过程说的明了,不知道是具体哪个环节有问题。 写文件?传文件?
㈡ afnetwork可以上传word文件吗
AFNetworking 是支持cookie的
在AFHTTPRequestSerializer中
/**
Whether created requests should use the default cookie handling. `YES` by default.
@see NSMutableURLRequest -setHTTPShouldHandleCookies:
*/
@property (nonatomic, assign) BOOL HTTPShouldHandleCookies;
不放心的话,
AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager];
manager.requestSerializer.HTTPShouldHandleCookies = YES;
热点内容