Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
由于 Spotify 最近改变了他们的 API,他们的文档并不是最好的。他们的文档说要访问歌曲中的当前位置,访问记录为未定义的“models.player.position”。
有没有人更幸运地使用新的 Spotify API 获得歌曲位置?
position是需要通过load函数获取的属性:
position
load
models.player.load('position') .done( function(p){ /* p.position stores the current position */ });