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.
在我的应用程序中,我生成了大型飞镖类。现在我在服务器上编译它们,这需要 CPU 时间。在浏览器中编译 Dart 代码会更好。然后通过 spawnURI 加载代码。
是否可以像在 try.dartlang.org 中那样以受支持的方式从 Dart 代码中调用 dart2js 编译器,还是需要将编译器复制到我的项目中?
在服务器上将 Dart 编译为 JavaScript 会更快,因为您可以通过 Dart VM 运行 dart2js。try.dartlang.org 运行在一个特殊版本的 dart2js 中,它没有被合并到主源代码中。