我正在尝试显示来自 Google API 的数据,但我的结果一直是“未定义”。这是我的代码:
$(document).ready(function() {
var url='https://www.googleapis.com/books/v1/volumes?q=harry+potter&maxResults=9'
$('#button').click(function() {
$.getJSON(url,function(data){
$('#content').empty();
$.each(data, function(entryIndex, entry){
var html = '<div class="result">';
html += '<h3>' + entry['id'] + '</h3>';
html += '<div class="title">' + entry['title'] + '</div>';
html += '<div class="author">' + entry['author'] + '</div>';
$('#content').append(html);
});
});
return false;
});
});