有什么方法可以在客户端使用CoffeeScript?

最佳答案

有两种方法:

  • 将CoffeeScript编译为JavaScript并像部署任何JavaScript文件或
  • 一样部署它
  • 使用coffee-script.js,它允许您在页面中放置<script type="text/coffeescript>标签。

  • 不建议将后者用于生产用途,但对开发来说是不错的选择。请参阅相关问题:Is there a way to send CoffeeScript to the client's browser and have it compiled to JavaScript *there*?

    关于coffeescript - 我也可以在客户端使用Coffeescript吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6798884/

    10-13 07:29