Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么方法可以dart:html在不触发 dartium 的情况下测试导入的代码。
dart:html
我想测试HttpRequestJSON 数据并希望它在终端上显示它,并且 dart 编辑器希望每次都打开 dartium,我认为这是不必要的。
HttpRequest
Dartium 包含浏览器托管的 Dart VM,它与相关的浏览器 DOM 绑定。当您运行需要浏览器 DOM 的代码时,例如 dart:html,您将运行 Dartium。
但是,您也可以使用 DumpRenderTree - 它是一个无头浏览器(即,向控制台生成输出)。
查看这些帖子以了解有关 DumpRenderTree 和 Dart 的更多信息: