我一直在尝试通过php页面将iOS应用程序中的JSON数据发送到mySQL数据库。出于某种原因,我的POST数据在php页面中不可用。
- (IBAction)jsonSet:(id)sender {
NSDictionary *dict = [NSDictionary dictionaryWithObjectsAndKeys:@"firstvalue", @"firstkey", @"secondvalue", @"secondkey", nil];
NSData *result =[NSJSONSerialization dataWithJSONObject:dict options:0 error:&error];
NSURL *url = [NSURL URLWithString:@"http://shred444.com/testpost.php"];
[request setHTTPMethod:@"POST"];
[request setValue:@"application/json" forHTTPHeaderField:@"Accept"];
[request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
[request setValue:[NSString stringWithFormat:@"%d", jsonRequestData.length] forHTTPHeaderField:@"Content-Length"];
[request setHTTPBody:jsonRequestData];
NSURLResponse *response = nil;
NSError *error = nil;
NSData *result = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
我知道调用了php页面,并且确认了写入数据库,
我的php文件中的前几行抓住了POST数据
<?php
// Put parameters into local variables
$email = $_POST["firstkey"];
...
但由于某种原因,$ email也是一个空字符串。我有一种感觉问题出在iOS代码中,因为我可以使用APIkitchen.com来测试我的页面,我可以确认它有效(只有当我排除Content-type和Content-Length字段时)
答案 0 :(得分:2)
PHP不会将JSON POST正文解码为$ _POST数组(因此您无法使用$email = $_POST["firstkey"];
)。您需要将传入的数据提取到数组(或对象)。 PHP文件的代码行:
$jsonString = file_get_contents('php://input');
$jsonArray = json_decode($json_string, true);
$ jsonArray将代表您发送的JSON结构。
答案 1 :(得分:1)
似乎有用的是:
$handle = fopen('php://input','r');
$jsonInput = fgets($handle);
// Decoding JSON into an Array
$decoded = json_decode($jsonInput,true);
答案 2 :(得分:1)
Valera的回答中有一个小错字
$jsonString = file_get_contents('php://input');
$jsonArray = json_decode($jsonString, true);
$email = $jsonArray('firstkey');
答案 3 :(得分:1)
这对我有用:
$jsonString = file_get_contents('php://input');
$jsonArray = json_decode($jsonString, true);
// with [] instead of ()
$email = $jsonArray['firstkey'];
答案 4 :(得分:0)
<?php
$handle = fopen('php://input','r');
$jsonInput = fgets($handle);
$decoded = json_decode($jsonInput,true);
print_r($decoded['firstkey']);
?>