php Post块中的Echo没有打印出JQuery发布的值

时间:2016-06-29 00:10:53

标签: php jquery ajax

我有一个运行一定数量试验的测试,一旦完成,它就会将数据发布到PHP脚本中。数据已成功添加到数据库中,但不会显示结果。我希望为用户显示测试结果。

PHP

<?php
    require_once 'php-includes/header.php';
    include ('php-includes/phpValidate.php');
    if ($_POST) {
        include ('php-includes/antHelper.php');

        $testData = removeDelimiters($_POST['RT'], $_POST['condition'], $_POST['response'], $_POST['ansStr'], $_POST['congruency'], $_POST['cueStr']);
        $testID = addTest($_POST['toa'], $_POST['nTrial']);

        if (isset($testID)) {
            for ($i = 0; $i < count($testData["RT"]); $i++) {
                addResponse((int)$testData["RT"][$i], (int)$testData["condition"][$i], $testData["response"][$i], $testData["answer"][$i], $testData["cue"][$i], $testData["congruence"][$i], $testID);
            }
            $results = getCueScores($testID);
            $results = getCongruencyScores($testID, $results);
            $alerting = $results["noCue"] - $results["doubleCue"];
            $orienting = $results["centerCue"] - $results["spatialCue"];
            $executive = $results ["incongruent"] - $results["congruent"];
            echo 'Your alerting result is' . $alerting;
            echo 'Your orienting result is' . $orienting;
            echo 'Your executive result is' . $executive;
            header('Location: index.php');
        }
    }
?>

JS

        $(".btn[name=submitANT").click(function() {
        $.post("antApp.php",
            {response : $("input[name=rspStr]").val(), RT : $("input[name=RTStr]").val(), nTrial : $("input[name=nTrial]").val(), toa : $("input[name=toa]").val(),
            condition : $("input[name=condition]").val(), ansStr : $("input[name=ansStr]").val(), cueStr : $("input[name=cueStr]").val(),
            congruency : $("input[name=congruency]").val()},
            function(data) {
                //$("#antDebrief").show();
                //$("#antDebrief").css("visibility", "visible");
            });
        });

1 个答案:

答案 0 :(得分:1)

你在回声之后发送header('Location: index.php');

这就像window.location.href="XYZ"; 它重定向页面。
所以也许没有错,但你没有时间去看回声。

尝试评论此行:

header('Location: index.php');
根据评论

编辑

1 - 您的&#34;通话&#34;页面必须与&#34;被称为&#34;页。一个自称的页面永远不是一件好事。

在您的被调用页面中

2 - (antApp.php),标题存在:require_once 'php-includes/header.php';这可能是正文和页脚:include ('php-includes/phpValidate.php');