c语言 get post请求,URL GET/POST请求目标-c
我必須向localhost發送get或post請求:
if(@$_GET['option']) {
echo "You said \"{$_GET['option']}\"";
}else if(@$_POST['option']) {
echo "You said \"{$_POST['option']}\"";
}
?>
我用這個代碼:
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://localhost/wsh/index.php?option=Hello"]];
NSData *response = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
NSString *get = [[NSString alloc] initWithData:response encoding:NSUTF8StringEncoding];
它有效,但有一次在代碼中.如果生病了另一次,申請已經終止.
我嘗試使用ASIFormDataRequest:
ASIFormDataRequest *request = [[[ASIFormDataRequest alloc] initWithURL:@"http://localhost/wsh/index.php"] autorelease];
[request setPostValue:@"option" forKey:@"myFormField1"];
[request start];
NSError *error = [request error];
if (!error) {
NSString *response = [request responseString];
NSLog(response);
}else{
NSLog(@"error");
}
它說:
2010-01-07 13:20:34.964 WSH[3351:903] -[NSCFString absoluteURL]: unrecognized selector sent to instance 0x160f8
2010-01-07 13:20:34.966 WSH[3351:903] error
我的英語
總結
以上是生活随笔為你收集整理的c语言 get post请求,URL GET/POST请求目标-c的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 用c语言链表编写便利店零售系统,链表实现
- 下一篇: android将引入aot编译器,And