dongxi5505 2018-07-25 07:47
浏览 46
已采纳

PHP没有捕获ajax请求

I am having request like this:

$(function(){
    $("#novaProfaktura").click(function(){
        $.ajax({
          type: "POST",
          url: "../Pages/Program.php",
          data: { action: "testing" },
          success: function()
          {
              alert("Ajax done"); //Testing purpose
          }
        });
        location.reload();
    });
});

And then in my body I have php like this:

<div id="Content">
    <?php
    echo("Php running <br>");
    if($_SERVER['REQUEST_METHOD'] == 'POST')
    {
        echo("Post running <br>");
        if($_POST['action'] = "testing")
        {
            echo("Action running <br>");
        }
    }

    ?>
</div>

What I am getting from this is alert message so I assume ajax is set up properly and getting Php running but it doesn't pass if($_SERVER['REQUEST_METHOD'] == 'POST'

As you can see jQuery code is running on div click.

What am I doing wrong?

EDIT: I have used function(data) and it seems to work BUT it doesn't return only echoed data but WHOLE page with echo. I used document.write() and it rewrite whole page but how to get particular echo value?

  • 写回答

2条回答 默认 最新

  • duanjiao5723 2018-07-25 12:50
    关注

    Answer for this was to instead of this:

    success: function()
    {
        alert("Ajax done"); //Testing purpose
    }
    

    use this:

    success: function(data)
    {
        alert("Ajax done"); //Testing purpose
        document.getDocumentById('emptyDiv').innerHTML = data;
    }
    

    Now as data you are getting all HTML text from document you are running function from so instead of url: "../Pages/Program.php" I used separated file url: "../Php/Testing.php" and inside that file I have only this code:

    <?php
        echo("Testing");
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 mpich安装完成后出问题
  • ¥15 multisim仿真
  • ¥15 stm32循迹小车代码问题
  • ¥15 输入一堆单词,使其去重输出
  • ¥15 qc代码,修改和添加东西
  • ¥50 Unity的粒子系统使用shadergraph(内置管线)制作的一个顶点偏移shader,但是粒子模型移动时,顶点也会偏移
  • ¥15 如何用python处理excel的数据(极值标准化)
  • ¥15 三向应力状态求剪应力
  • ¥15 jupyter notebook如何添加libGL.so.1库
  • ¥20 easyPoi能否实现下拉多选或者复选框