您好,我有一个 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
谢谢你。