读取JSON编码的Array表单cakePHP视图控制器

时间:2013-03-12 15:26:54

标签: json cakephp

您好我有一个JQuery / Ajax函数如下:

$.ajax({
    type : "POST",
    url  : "/posts/getids", 
    success: function(response){
        console.log(response);                                                                  
    },
    error: function() {
        alert('An unexpected error has occurred! Please try later.');
    }
});

在我的cakePHP脚本中,我使用json_encode($ array)函数发送数组。

在萤火虫中我得到了这个结果:

[{"Post":{"id":1}},{"Post":{"id":2}},{"Post":{"id":4}},{"Post":{"id":3}}]

所以我的问题是如何只打印这样的ID:1,2,3,4

谢谢。

1 个答案:

答案 0 :(得分:1)

// Convert JSON to JavaScript array.
var dataFromServer = JSON.parse(response);

// Creating an array of id's.
var idArray = [];

// Moving data to "idArray".
for(i = 0; i < dataFromServer.length; i++){
    idArray[i] = dataFromServer[i].Post.id;
}

// Checking the result.
console.log(idArray);

// [1, 2, 3, 4].