我正在尝试将字符串发布到服务器。我在下面有这些我知道有效的代码,但只有在我在数据库中添加了至少一个 EMPTY 条目之后(它仍然会显示在数据库中,基本上就像这样:“”)。我不知道为什么 NSURLRequest 有这种奇怪的行为。谁能告诉我为什么?
NSMutableString *postString = [NSMutableString stringWithString:@"http://website.com/post.php"];
[postString appendString:[NSString stringWithFormat:@"?loc=%@",locationBox.text]];
NSMutableURLRequest* request = [[NSMutableURLRequest alloc]initWithURL:[NSURL URLWithString:postString] cachePolicy:NSURLCacheStorageNotAllowed timeoutInterval:3];
[request setHTTPMethod:@"POST"];
postConnection = [[NSURLConnection alloc]initWithRequest:request delegate:self startImmediately:YES];