使用 Google Closure Library 进行 Google DART?
Google Closure UI 库如何与 Google DART 一起使用?
How can the Google Closure UI Library be used with Google DART?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Dart 没有使用 JavaScript 库的工具。这是设计使然,因为 Dart 旨在针对 Dart VM 和翻译为 JS 的 Dart。通过使用 iFrame 和 Web Worker 之间的消息传递,可以在一定程度上解决此问题。
Dart has no facility for using JavaScript libraries. This is by design as Dart is intended to target both the Dart VM and Dart translated to JS. It is possible to workaround this to some extent by using message passing between iFrames and web workers.
虽然目前您还不能直接使用闭包库,但我们正在努力移植一些更有用的库,例如,加密库位于:http://code.google.com/p/dart-crypto-lib/
Although at present, you can't use the closure libraries directly, some effort is underway to port some of the more useful libraries, for example, the crypto libraries are here: http://code.google.com/p/dart-crypto-lib/
您可以使用 js 包来使用任何 Js 库。查看 使用 Dart 中的 JavaScript:js 库 了解如何使用它。
You can use the js package to use any Js library. Have a look at Using JavaScript from Dart: The js Library to know how to use it.