2

我正在尝试编写一个库,让 dartisans 更容易使用 SoundCloud JavaScript SDK ( http://developers.soundcloud.com/docs/api/sdks#javascript )。

我正在使用 'dart:js' 库,并且我只使用一个类来处理代理。

class SCproxy {
   JsObject proxy = context['SC'];
   String client_id;

SCproxy(this.client_id) {}  

initialize() {
   proxy.callMethod('initialize', [client_id]);
}
stream(String track_id){
   var track = new JsObject(proxy.callMethod('stream',[track_id]));
   print(track); // track should be the soundmanager2 object that we can call '.play' on.
}

我托管的仓库是(https://github.com/darkkiero/scproxy

当我尝试运行我的“流”方法时,就会出现我的问题。

main() {
   SCproxy SC = new SCproxy('Your SoundCloud API client_ID');
   SC.initialize();
   SC.stream('/tracks/111477464'); 
}

当我尝试抓取并使用 javascript 'SC.stream' 方法返回的 soundmanager2 对象时,dart 编辑器给了我这个异常:

Breaking on exception: type 'ScriptElement' is not a subtype of type 'JsFunction' of 'constructor'.

我的印象是我应该能够通过收集“SC.stream”的回调来获取 soundmanager2 对象的 dart JsObject,但我不确定如何。但是我可能完全滥用了“dart:js”这也是有用的信息。

4

1 回答 1

3

您似乎没有遵循SoundCloud JavaScript SDK 文档。特别是对于stream将回调作为参数并且不返回的方法。

以下飞镖代码:

context['SC'].callMethod('stream', ['/tracks/293', (sound) {
  sound.callMethod('play');
}]);

将执行与此 JS 代码相同的操作:

SC.stream("/tracks/293", function(sound){
  sound.play();
});

您可以查看Using JavaScript from Dart以获得更多解释。

于 2013-12-14T20:21:45.133 回答