我正在尝试从 JSONP Web 服务中获取值,但我不确定如何从这个 JSON 数组中获取值。
$('#bookThumbnaill').attr('src', bookDetails.volumeInfo.imageLinks.thumbnail);
$('#bookTitle').text(bookDetails.volumeInfo.title);
//this one does not work!
$('#ISBN').text(bookDetails.volumeInfo.industryIdentifiers.type);
这是来自 API 的文档,它说明了数据是如何返回的