Reputation: 627
I am using Google Books API to receive a list of books, but sometimes some book entry does not have some keys/properties, e.g., Authors, or does not have a Thumbnail. Thus JavaScript says that the property im trying to access is undefined and my application stucks.
Example Json data example from a book search containing the keywork Java
Full link
https://www.googleapis.com/books/v1/volumes?q=java&callback=jQuery191020691258599981666_1377508821982&_=1377508821983
E.g., when Authors is missing
TypeError: row.volumeInfo.authors is undefined
I tryied two solutions suggested
if ( typeof (authors) != "undefined"){}
and
if('authors' in booksObject) {}
but non of them seems to work, since they never enter the loops even when this proerty exists.
This is where I call
function populateListview(books) {
//iterate each returned item
$.each(books.items, function(i, row) {
//populate each row in the list
var htmlString = '<li><a href="book_details.html?id=' + row.id + '"><img src="';
htmlString += row.volumeInfo.imageLinks.thumbnail + '"';
htmlString += 'class="ui-li-has-thumb"/><h3>';
//Check if authors exists in JSON
htmlString += row.volumeInfo.title + '</h3><p>' + row.volumeInfo.authors[0] + '</p></a></li>';
//If not add an undefined authors string in the authors
console.log(htmlString);
//append new html to the list
$('#book_list').append(htmlString);
});
$('#book_list').listview('refresh');
// refresh the list-view so new elements are added to the DOM
};
Upvotes: 4
Views: 16688
Reputation: 1093
Here's a really simple way to check if any key or value exists in your JSON.
var jsonString = JSON.stringify(yourJSON);
if (jsonString .indexOf("yourKeyOrValue") > -1){
console.log("your key or value exists!");
}
It's quick, simple, easy.
Upvotes: 0
Reputation: 1551
Try this :
if(booksObject.image) {
//do stuff with it
} else if( booksObject.author ) {
//do stuff with author
}
Upvotes: 1
Reputation: 388316
You can check $.isArray(row.volumeInfo.authors) && row.volumeInfo.authors.length > 0
console.log(books.toString());
// iterate each returned item
$.each(books.items, function(i, row) {
// populate each row in the list
var htmlString = '<li><a href="book_details.html?id=' + row.id
+ '"><img src="';
htmlString += row.volumeInfo.imageLinks.thumbnail + '"';
htmlString += 'class="ui-li-has-thumb"/><h3>';
if ($.isArray(row.volumeInfo.authors) && row.volumeInfo.authors.length > 0) {
// code for what to do with json here
htmlString += row.volumeInfo.title + '</h3><p>'
+ row.volumeInfo.authors[0] + '</p></a></li>';
} else {
htmlString += row.volumeInfo.title + '</h3><p>' + "Author Undifined"
+ '</p></a></li>';
}
console.log(htmlString);
// append new html to the list
$('#book_list').append(htmlString);
});
$('#book_list').listview('refresh');
// refresh the list-view so new elements are added to the DOM
Upvotes: 1