Google book api:如何显示标题?

时间:2014-02-11 19:36:55

标签: google-api google-books

我正在尝试进行练习,我需要为我的网页提供AJAX Feed。由于我的网站是关于我正在使用Google Books API的书籍。 我不知道如何显示这本书的标题。这是我到目前为止的代码:

   $(document).ready(function(){
       var url = 'https://www.googleapis.com/books/v1/volumes?q=:a';
       $.get(url, function(data,status){
console.log(data);
var intValue =data.totalitems;
var strOne =data.kind;

var items = data.items;
$.each(items, function( index, value) {
    console.log(value.title);
    $('#div1').append('<li><div>'+value.title+'</div></li>')  });
});

        });
    });

1 个答案:

答案 0 :(得分:0)

尝试以下

<强> JS

$.each(data.items, function(entryIndex, entry){                    
var html = '<div class="results">';   
html += '<h3>' + ( entry.volumeInfo.title || '' )+ '</h3>';  
$(html).hide().appendTo(".result");
});

<强> HTML

<div class="result"></div>