在控制台中回显数据,但 $_POST 为空

问题描述 投票:0回答:0

所以我试图用 ajax 发送值,但是 config.php 中的 $_POST 是空的。你能帮帮我吗?

$(document).ready(function () {
    function updateWidth() {
        var width = Math.round($('#block').width());
        $('#height-blue').text(width);
        $('#height-red').text(width);
        $('#height-green').text(width);
       
        $.ajax({  
            type: 'POST',  
            url: 'config.php', 
            data: {width: width, anything: "dadssadasds" },
            success: function(data) {
                console.log(data);
            }
        });
        
    }
    $(window).resize(updateWidth);
    updateWidth();
});

这是控制台输出

Array
(
    [width] => 427
    [anything] => dadssadasds
)

我确定 config.php 与此脚本位于同一目录中

php ajax post
© www.soinside.com 2019 - 2024. All rights reserved.