5

我如何console.error(foo);在 Dart 中做到这一点?

print()方法非常接近,但这并不是我想要的。我希望有错误通知和图标以及堆栈跟踪。

4

1 回答 1

10

在 Dart 中做起来其实很简单:

import 'dart:html';

main() {
  window.console.error('Something bad occurred');
}
于 2012-11-03T11:41:05.993 回答