gpt4 book ai didi

php - 将JSON从iOS发布到PHP

转载 作者:行者123 更新时间:2023-12-01 17:58:12 25 4
gpt4 key购买 nike

我一直在尝试通过php页面将JSON数据从iOS应用发送到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代码中,因为我可以使用API​​kitchen.com来测试我的页面,并且可以确认它可以正常工作(仅当我排除Content-type和Content-Length字段时)

最佳答案

PHP不会将JSON POST主体解码为$ _POST数组(因此您不能使用$email = $_POST["firstkey"];)。您需要将传入数据提取到数组(或对象)。您的PHP文件的代码行:

$jsonString = file_get_contents('php://input');
$jsonArray = json_decode($json_string, true);

$ jsonArray将代表您发送的JSON结构。

关于php - 将JSON从iOS发布到PHP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13886590/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com