我有一个包含子数组的数组,通过 POST 请求拉到 PHP 文件。问题是,我很难找到如何返回数组对象的值,更不用说遍历它了。
Javascript
$.ajax({
type: 'POST',
url: 'php.php',
data: 'id=testdata',
dataType: 'json',
cache: false,
success: function(result) {
alert(result[0]); // returns [Object object]
},
});
我确信它正确地从 PHP 文件中获取了数组。
这是PHP 文件。