使用SoundCloud Getters

时间:2013-02-13 20:25:22

标签: javascript soundcloud getter

我在使用SoundCloud getter getCurrentSound(回调)时遇到问题。我正在尝试将当前歌曲存储在窗口小部件中作为var,因此我可以将其作为参数传递给我的一个ruby方法。

我尝试了以下操作,但它无效:

   var current song =  SC.Widget("sc-widget").getCurrentSound() 

以下是有关SoundCloud使用的getter的信息: http://developers.soundcloud.com/docs/api/html5-widget

1 个答案:

答案 0 :(得分:2)

很抱歉,如果文档没有说明这一点。 getCurrentSound()方法是异步的,因此它不返回值而是进行回调。试试这个:

var widget = SC.Widget(...);
widget.getCurrentSound(function(sound) {
    console.log(sound.title);
});

希望有所帮助。如果还不清楚,请告诉我。