我正在尝试将数据从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;
}