- NSString *postURL = [NSString stringWithFormat:@"http://xxxxxx.php?mod=%@&data=%@", mod, data];
- NSLog(@"发送注册请求URL:%@", postURL);
- ASIHTTPRequest *request = [[ASIHTTPRequest alloc] initWithURL:[NSURL URLWithString:postURL]];
- [request startSynchronous];
如果是 Get ,或者参数可以简单的组成 Get 方式提交的时候, 比如 thread.php?id=123 , 就用 ASIHTTPRequest 就可以了
- 2.
- NSString *postURL = [NSString stringWithFormat:@"http://xxxxxx.php"];
- ASIFormDataRequest *request = [[ASIFormDataRequest alloc] initWithURL:[NSURL URLWithString:postURL]];
- [request addPostValue:myModel forKey:@"mod"];
- [request addPostValue:myAllData forKey:@"data"];
- [request startSynchronous];
如果必须是 POST ,或者参数很多,你要构造一个带参数的 URL 很麻烦的时候,就用 ASIHttpFormDataRequest
转载:http://blog.csdn.net/lgm252008/article/details/8511546
本文介绍了如何使用ASIHttpRequest和ASIFormDataRequest来发送GET和POST请求。对于简单的GET请求可以直接使用ASIHttpRequest,而对于复杂的POST请求则推荐使用ASIFormDataRequest。文中通过具体的代码示例展示了两种请求的实现方式。

3784

被折叠的 条评论
为什么被折叠?



