目标
[{"ID": 1, "Name": "XBOX"}, {"ID": 2, "Name": "Playstation 3"}]
通过$.ajax()
使用 jQuery发送。
问题
我有这个:
[...]
var object = $.parseJSON(data);
$.ajax({
type: "POST",
url: "laboratory.php",
data: object,
success: function(response) {
console.log(response);
}
});
并且,在laboratory.php
:
<?php print_r($_REQUEST); ?>
最后,通过控制台返回的是:
Array
(
[undefined] =>
)
这就是data
's 变量的含义:
[{"ID": 1, "Name": "XBOX"}, {"ID": 2, "Name": "Playstation 3"}]
这就是object
(通过 Chrome 的控制台)的意思:
[Object, Object]
有人可以给我一个想法吗?