Waning:尝试存储 post 变量时未定义的数组键 (xmlhttprequest)

Waning: Undefined array key when trying to store post variables (xmlhttprequest)

我正在尝试保存“buchen.php”在 php 变量中获取的数据,但我不断收到以下错误

警告:第 4 行 buchen.php 中的未定义数组键“reise_id”

警告:第 5 行 buchen.php 中的未定义数组键“platz_geb”

谁能告诉我哪里出了问题?

    var xhr = new XMLHttpRequest();
    xhr.open('POST', 'buchen.php');
    xhr.setRequestHeader('Content-Type', 'application/json');
    xhr.send(JSON.stringify({
        reise_id: "<?php echo $reise_id; ?>",
        platz_geb: platz_blau
    }));
//buchen.php

    $reise_id = $_POST['reise_id'];
    $platz_geb = $_POST['platz_geb'];

与其像往常一样获取 POST 变量,不如在 PHP 代码中尝试以下操作:

$json = file_get_contents('php://input');
echo $json;