我的代码如下所示:
<?php $json = file_get_contents('php://input'); $postData = json_decode($json, true); error_log($json); $orderId = $postData["orderId"]; error_log("order id is".$orderId); ?>
但不知何故$postData无法正确处理,因此第二个错误日志没有给出任何输出。