我正在尝试使用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);