当我执行$.getJSON
:
$.getJSON("http://localhost.com", function(data) {
console.log(data)
console.log(data.posts);
});
这就是我得到的 - 如何将posts数组变为变量或可用格式?我试过
console.log(data.posts)
没有运气。
答案 0 :(得分:1)
data.posts
是你想要的。它是一个包含名为posts
的数组的对象。要获得它,请使用
var posts = data.posts.posts;