ASI总结
发送请求的2个对象
1.发送GET请求 ASIHttpRequest
2.发送POST请求 ASIFormDataRequest
二发送请求
1.同步请求
startSynchronous
2.异步请求
startAsynchronous
三 监听请求的过程
1.成为代理
四监听请求过程
如果同时设置了block和实现了代理方法 请求过程中 block和代理方法都会调用
一般的调用顺序 代理方法 先于 block方法
如果实现了 下面的代理方法,那么responseData、responseString就没有值
-(void) request:(ASIHTTPRequest *)request didReceiveData:(NSData *)data;
四 文件下载
1.一般下载
1.设置文件下载的保存路径
request.downloadDestinationPath = filepath;
2.断点下载
request.temporaryFileDownloadPath = tempFilepath;
设置支持断点续传
request.allowResumeForFileDownloads = YES;
设置文件下载的临时路径
五文件上传
六 request 常见设置
时间: 2024-10-29 04:11:55