Dart语言中的Console.log
如何从Dart语言login到浏览器控制台,如JavaScript中的console.log
?
简单:
print('This will be logged to the console in the browser.');
在Dart(浏览器,虚拟机等)的所有实现中总是可以使用基本的顶级print
function。 因为Dart有string插值,所以很容易使用它来打印有用的东西:
var a = 123; var b = new Point(2, 3); print('a is $a, b is ${bx}, ${by}');
另外, dart:html
允许使用window.console
对象。
import 'dart:html'; void main() { window.console.debug("debug message"); window.console.info("info message"); window.console.error("error message"); }