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.thenwindow.requestAnimationFrame,一切都会按预期进行。我是否误解了 Dart 期货的运作方式?

4

1 回答 1

1

用法看起来不错。

您正在运行的旧版本尚未实现文档中指定的行为,或者它只是一个错误。我会继续在http://dartbug.com/new上提出问题

于 2013-03-18T08:32:44.047 回答