我尝试将json数组上传到mySQL,但是应该处理POST的相应php文件未收到该数组
尽管发送脚本在发送到接收php-script的数组上给出了控制台响应文本= 200,但是在接收脚本中发送到控制台的变量没有显示内容(代码示例中的接收脚本)。有什么建议吗?
我尝试在php中使用POST变量,但也没有得到结果
<?php
// Takes raw data from the request
//if(isset($_FILES['jsonData'])){
$jsonInput = file_get_contents('php://input');
// Convert it into a PHP object
$newCoords = json_decode($jsonInput,true);
console.log($jsonInput);
console.log($newCoords);
//}
?>
我希望服务器上接收到的pdp文件在控制台上显示一个json数组