jquery数组在php中变为null

时间:2017-08-03 20:50:11

标签: php jquery arrays ajax

我正在尝试使用ajax传递一个简单的jquery数组,当我在php中使用var_dump时它显示为null,但是当我通过jquery显示输出时,数组出现了。

Jquery的

aux = ['ahsja', 'shjdshjd', 'dh8f8sfs8'];

        var json = JSON.stringify(aux);
        $.ajax({
            type: "POST",
            url: "test.php",
            dataType: 'json',
            data: {date: json},

            success: function (res) {
                window.open(this.url, '_blank');
                console.log(JSON.stringify(res));

            },
            error: function (res) {
                console.log(JSON.stringify(res));
                window.open(this.url, '_blank');
            }
        });

PHP

$date= json_decode($_POST['date']);

var_dump($date);

0 个答案:

没有答案