我试图通过json格式将数据(字典中的字典)发送到服务器端的php文件,以便以后将数据存储到MySQL数据库中。但是,看起来php接收的数据对象始终为null。
以下是Objective-C系列:
NSURL *url = [NSURL URLWithString:@"http://myaddress/upload.php"];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
[request setHTTPMethod:@"POST"];
[request setValue:@"application/json; charset=utf-8" forHTTPHeaderField:@"Content-Type"];
[request setHTTPBody:self.sentData];
NSError *error = nil;
NSURLResponse *response = nil;
NSData *returnData = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
if (error) NSLog(@"%s: NSURLConnection error: %@", __FUNCTION__, error);
NSString *responseString = [[NSString alloc] initWithData:returnData encoding:NSUTF8StringEncoding];
NSLog(@"responseString: %@",responseString);
这是php行:
<?php
$json_data=file_get_contents('php://input');
$post_data = json_decode($json_data);
if (is_array($post_data))
$response = array("status" => "ok", "code" => 0, "original request" => $post_data);
else
$response = array("status" => "error", "code" => -1, "original_request" => $post_data);
$processed = json_encode($response);
echo $processed;
?>
Xcode上的调试信息如下:
2015-07-19 17:34:35.900 PhpPostTest[1531:557248] responseString: {"status":"error","code":-1,"original_request":null}
看起来连接正常,但响应字符串表示php端收到的数据为空。任何人都可以在这里提出潜在的问题吗?
答案 0 :(得分:2)
json_decode()
都会返回NULL
。
您可以运行echo $json_data;
来验证您的JSON实际上是JSON。
答案 1 :(得分:1)
默认情况下,json_decode不会将解码后的字符串作为数组返回。如果你想让它返回一个数组,你必须通过将函数的第二个参数设置为true来指定它。
bar3(DAT)
否则在这种情况下,json_decode可能会返回一个stdClass对象。当然,is_array检查将评估为false。
还要确保传递给json_decode函数的数据编码为UTF-8。它代表一个有效的json字符串,否则你将得到null。