您有以下功能:
function last()
{
/* Create a cache object */
var cache = new LastFMCache();
alert("test");
alert("test2");
/* Load some artist info. */
lastfm.artist.getInfo({artist: 'The Killers'}, {success: function(data){
alert(data.bio);
$('gallery').append(data.to_html('<p>${bio}</p>'));
}, error: function(code, message){
/* Show error message. */
}});
}
alert(data.bio)显示为未定义。 我如何检查所持有的数据以及如何在我的网页上正确使用和格式化?
答案 0 :(得分:1)
我如何检查所持有的数据?
console.log(data);
放入成功回调函数中。运行代码,并根据您的内容检查内容。我建议Firefox使用Chrome的高级对象浏览器,但你也可以...... 获得知识!