我正在尝试将播放器视图添加到我的应用程序中,因此我将获得封面和播放/暂停按钮。但是,当我尝试单击播放按钮时,API 会抛出 TypeError:
未捕获的类型错误:无法读取未定义的
Album.get
Object.defineProperties.playing.set
Player.play.context的属性“长度”
错误代码似乎在 models.js 中,在线:641:
Album.prototype.get = function(index) {
if (index >= this.data.tracks.length) {
throw new RangeError("Index out of range");
}
return new Track(this.data.tracks[index]);
};
我的代码如下所示:
var p = new views.Player();
p.context = track.album;
document.getElementById('album-element').appendChild ( p.node );
这是 Spotify API 中的错误,还是一些未记录的事件?