0

I am using the soundcloud custom player to pull in favorites. my question is how do i sort by date favorited, not by date uploaded which is the default in the minimal demo?

http://developers.soundcloud.com/docs/custom-player

the script i'm working off of is here: https://github.com/soundcloud/soundcloud-custom-player/blob/master/js/sc-player.js

in my implementation i built the player using:

<div class="post faves">
<a href="http://soundcloud.com/mr-tunes/favorites" class="sc-player"></a>
</div>
4

1 回答 1

1

Soundcloud 不提供通过其 API 对曲目进行排序的方法,仅用于过滤它们。API 不提供用户何时将曲目设置为收藏的参数。

默认情况下,它应该按设置为收藏的时间排序,您可以通过将每个轨道添加到数组中并在其上运行 array.reverse() 来反转它。

要按字母顺序或 API 提供的任何其他参数排序,您可以使用相同的方法,将参数放入数组并使用 .sort() 和/或 .reverse()

于 2013-12-31T11:23:54.077 回答