所以我正在學習jQuery,並且我創建了一個觸發器事件,當JSON數據被檢索時執行。我想要獲取所有的對象,但無法這樣做。我認爲這是由於如何檢索JSON對象。jQuery觸發器 - 返回只有一個對象,而不是所有JSON取回的對象
這是我正在使用的代碼。
<script>
$.getJSON('http://jsonplaceholder.typicode.com/users', function(results){
console.log(results) // prints the correct value. All the objects
$(document).trigger('jph/photos', results);
});
$(document).on('jph/photos', function(e, results){
console.log(results) // returns a single object??
$('ul.tweets').html(
$.map(results, function(obj, index){
return '<li>'+obj.name+'</li>';
})
);
});
</script>
http://jsfiddle.net/arunpjohny/053ctyt5/ –
你是什麼意思扁平? – Uma