`
lizhuang
  • 浏览: 904068 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

ASIHttpRequest NSURL参数问题

ios 
阅读更多
两种方式都可以加参数
1.NSURL
  [ NSURL URLWithString : [NSString stringWithFormat:@"http://192.168.1.100:8080/down?method=%@",abcdef] ];


2.ASIFormDataRequest
ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:url];
[request setPostValue:@"Ben" forKey:@"first_name"];
[request setPostValue:@"Copsey" forKey:@"last_name"];
分享到:
评论

相关推荐

    ASIHttpRequest

    - 设置请求参数:可以使用`-[ASIHTTPRequest setPostValue:forKey:]`方法添加POST参数,或`-[ASIHTTPRequest appendPostData:]`添加自定义数据。 - 发起请求:使用`startAsynchronous`或`startSynchronous`方法...

    ASIHTTPRequest网路请求

    ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:@"http://example.com"]]; [request setRequestMethod:@"POST"]; [request addRequestHeader:@"Content-Type" value:@"application...

    ASIHTTPRequest

    对于POST请求,可以添加参数: ```objc ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:[NSURL URLWithString:@"http://example.com"]]; [request setPostValue:@"value" forKey:@"key"]; ...

    ASIHttpRequest简介.doc

    使用 ASIHTTPRequest 的基本步骤通常包括创建请求对象、设置请求参数、启动请求以及处理响应。例如: ```objc NSURL *url = [NSURL URLWithString:@"http://www.baidu.com"]; ASIHTTPRequest *request = ...

    ASIHttpRequest网络请求框架

    3. **设置参数**:如果需要发送数据,可以通过setPostValue或setRequestData设置POST参数。 4. **开始请求**:调用start方法启动请求,可以设置回调处理响应数据和错误信息。 5. **处理响应**:在完成Block或代理...

    IPhone使用ASIHTTPRequest调用WebService

    ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:@"http://your-web-service-url"]]; [request setRequestMethod:@"POST"]; [request setPostValue:@"your-param" forKey:@"param-...

    ASIHttpRequest下载

    对于POST请求,可以使用ASIFormDataRequest,并添加参数: ```objc ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:[NSURL URLWithString:@"http://example.com"]]; [request setPostValue:...

    ASIHTTPRequest 框架

    ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:@"http://www.example.com"]]; [request startSynchronous]; ``` 2. **异步处理**:ASIHTTPRequest 支持异步请求,可以在后台...

    ASIHTTPRequest常用类包

    ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:@"http://www.example.com"]]; [request setDelegate:self]; [request startAsynchronous]; ``` 在上述代码中,我们创建了一个指向...

    asiHTTPRequest包

    ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:@"http://example.com"]]; ``` 对于异步请求,你可以设置完成回调Block,这样当请求结束时,无论成功还是失败,都会调用这个Block...

    ASIHTTPRequest\ASIFormDataRequest

    例如,如果你需要获取一个网页的新闻列表,你可以将参数(如类别ID、起始项和每页项目数)附加到URL上,然后创建一个ASIHTTPRequest实例来发起请求。 ```objc NSString *lastUrl = [NSString stringWithFormat:@"?m...

    ASIHttpRequest.zip

    ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:@"http://example.com"]]; [request setDelegate:self]; [request setDidFinishSelector:@selector(requestFinished:)]; [request ...

    对asi 网络请求类的封装

    在这个方法中,我们可以初始化ASIHTTPRequest对象,设置请求参数,并在请求完成时调用传入的completion block返回结果。 5. **文件上传与下载**:ASIHTTPRequest支持文件上传和下载。在封装时,可以提供专门的方法...

    Http 开源包

    ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:@"http://www.example.com"]]; [request startSynchronous]; ``` 这段代码会发送一个同步的GET请求到指定URL,并在请求完成后...

    iOS下载数据的demo

    ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:@"http://example.com/data"]]; ``` 2. **异步请求**:ASIHttpRequest支持异步请求,这意味着在请求数据的同时,用户界面仍能...

    ios 实现登录服务器 demo

    - 对用户输入进行验证,避免SQL注入等安全问题。 - 存储用户的登录状态,如使用Keychain或UserDefaults,而非始终发送登录请求。 通过这个"ASIRequestDemo",你将了解如何在iOS应用中实现基本的登录功能。随着...

    app上传图片

    // 将图片转换为JPEG格式的NSData对象,第二个参数是质量 ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:[NSURL URLWithString:@"http://your/upload/url"]]; [request addData:imageData ...

    ASI 表单提交

    你还可以设置请求头、超时时间、代理等参数。 6. **示例代码**: ```objc ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:[NSURL URLWithString:@"http://example.com/upload"]]; [request add...

    ASIhttp得力助手

    5. **请求队列管理**:ASIHTTPRequest支持请求队列,通过`+ (instancetype)requestWithURL:(NSURL *)url queue:(ASINetworkQueue *)queue`可以将请求添加到队列中。队列可以帮助管理和同步多个请求,避免同时发送...

    iOS开发之如何通过PUT请求上传数据

    ASIHTTPRequest * fileUpRequest = [ASIHTTPRequest requestWithURL:[NSURL URLWithString:uploadUrl]]; [fileUpRequest setHTTPMethod:@"PUT"]; [fileUpRequest addRequestHeader:@"Content-Type" value:@...

Global site tag (gtag.js) - Google Analytics