5

次のコードは例外をスローします"type '([int]) => void' is not a subtype of type 'RequestAnimationFrameCallback' of 'callback'."

import 'dart:html';

void main() {
  window.animationFrame.then((time) => print("test"));
}

に変更window.animationFrame.thenするとwindow.requestAnimationFrame、すべてが期待どおりに機能します。Dart 先物の仕組みを誤解していますか?

4

1 に答える 1

1

使用法は正しいようです。

ドキュメントで指定されている動作をまだ実装していない古いバージョンを実行しているか、単なるバグです。http://dartbug.com/newで問題を報告します。

于 2013-03-18T08:32:44.047 に答える