从ajax向php发送数据返回NULL

时间:2019-04-25 15:26:57

标签: javascript php ajax

我正在尝试将数据从ajax发送到php。

当我试图提醒它时,它可以正常工作,但是当我尝试发布数据时,它却无法工作。

我的Ajax

function onBtnClick(event){
    var nah = JSON.stringify(points);
    alert(nah);
    $.ajax( {
      url:"../php/points.php",
      type:'post',
      data: {point:nah},
      success: function(response){
          window.location = "../php/points.php";
      }

  })

  }

我要发布的要点

 points[currentid] = {id: currentid, x: event.offsetX, y: event.offsetY};
  currentid++;

Php代码

if(isset($_POST['point'])){
        $user = $_POST['point'];

        $decoded = json_decode($user, true);

        var_dump($decoded);

        echo $decoded;
    }

0 个答案:

没有答案