空的file_get_contents('php:// input')

时间:2019-06-22 09:48:11

标签: javascript php xmlhttprequest

我尝试将JSON数组上传到mySQL,但是应该处理POST的相应PHP文件未收到该数组

$jsonInput = file_get_contents('php://input'); 

// Convert it into a PHP 
object $newCoords = json_decode($jsonInput,true); 

console.log($jsonInput);
console.log($newCoords);

尽管发送脚本在发送到接收PHP脚本的数组上给出了控制台响应文本= 200,但是在接收脚本中发送到控制台的变量没有显示内容(在代码示例中接收脚本)。有什么建议吗?

0 个答案:

没有答案