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 中编程,但没有 Dart-Editor。到目前为止它工作得很好,但是在对 html/css 或 dart 代码进行更改后总是调用 pub build 真的很烦人而且很慢。
据我所知,使用 Dart-Editor 启动应用程序时,您只需刷新页面即可。
没有编辑器是否有可能让它工作?
谢谢!
您可以使用pub serve类似于集成在 Darteditor 中的网络服务器。如果您使用 Dartium 作为浏览器,您可以添加--no-dart2js这样pub serve不会生成 JavaScript(这很慢),而是直接提供 Dartium 可以直接处理的 Dart。
pub serve
--no-dart2js
对于其他浏览器,使用集成的 dart2js 转换当然很方便。