I'm making of prototype of Spotify Application, and get stuck on the last part of code.
I have a list of albums uri, and want to display album with cover and link to it. So I parse the list, create an album object, and push the HTML corresponding to what i want. it look like that :
for(var i = data.length; i--; ) {
var cd = models.Album.fromURI(data[i].uri);
var cover = $(document.createElement('div')).attr('id', 'player-image');
cover.append($(document.createElement('a')).attr('href', data[i].uri));
var img = new ui.SPImage(cd.cover ? cd.cover : "sp://import/img/placeholders/300-album.png");
cover.children().append(img.node);
$("#discs").append(cover);
}
I don't understand why cd.cover is always empty...
Thx for your help.