我使用$.getJSON
和其他一些来获取JSON数据。我终于实现了这个目标
https://www.dropbox.com/s/vm1hizzfx02vioq/Screenshot%202015-06-07%2015.39.36.png?dl=0
为了达到这个目的,我在console.log(projects[index]);
语句中使用$.each()
将json记录到控制台。我现在如何记录" name"字符串到控制台。
我已尝试console.log(projects[index].name);
,但这给了我(2)undefined
var usernameBehance = "stefkors";
var urlBehance = 'https://www.behance.net/v2/users/stefkors/projects?callback=?&api_key=key';
$.getJSON(urlBehance, function(json){
projects = json;
outputBehanceContent(); // Behance Content
});
function outputBehanceContent() {
$.each(projects, function(index){
console.log(projects[index].name);
});
};
答案 0 :(得分:1)
项目存储在projects数组中,因此它应该是json.projects 这是迭代json数组http://jsfiddle.net/f3baxkyd/1/
的小提琴int