0
NSURL *URL = [NSURL     URLWithString:@"http://"];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:URL];
request.HTTPMethod = @"POST";

NSString *params = @"json=deepak";
NSData *data = [params dataUsingEncoding:NSUTF8StringEncoding];


[request addValue:@"8bit" forHTTPHeaderField:@"Content-Transfer-Encoding"];
[request addValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];
[request addValue:[NSString stringWithFormat:@"%i", [data length]] forHTTPHeaderField:@"Content-Length"];
[request setHTTPBody:data];


NSURLResponse *responce;
NSError *error;
NSData *returnData = [ NSURLConnection sendSynchronousRequest:request returningResponse:&responce error:&error];
NSString *content = [NSString stringWithUTF8String:[returnData bytes]];
NSLog(@"responseData: %@", content);

大家好,我正在使用stackOverflow本身的代码,并且写的答案是有效的,但是我得到了

来自 php 服务器的“响应数据 = null”

我的简单服务器代码是

$json = CJSON::decode($_POST['json'],TRUE); 回声 CJSON::encode($json);

4

1 回答 1

0

是的,我终于解决了我的问题.....要生成密钥对值,我必须以数组方式发送数据。IE

 @"{\"user\":\"deepak\",\"password\":\"1234\"}";

这是 json 键的值。

然后你可以在php服务器上使用解码

$json = CJSON::decode($_POST['json'],TRUE); 回声 CJSON::encode($json);

就像这样,它就像魅力一样

于 2012-10-18T10:18:45.733 回答