如何在 CoffeeScript 文件中使用 haml?

发布于 2024-11-26 14:03:43 字数 228 浏览 2 评论 0原文

是否可以在 Rails 3.1 项目的 CoffeeScript 文件中使用 haml?
文件扩展名的正确顺序是什么?

我最后一次尝试是:

home.js.haml.coffescript

$ ->
  alert '#{@count}'

其中 @count 是一个 ruby​​ 变量。

Is it possible to use haml within a coffeescript file in a rails 3.1 project?

What is the correct order of the file extensions?

My last try was that:

home.js.haml.coffescript

$ ->
  alert '#{@count}'

where @count is a ruby variable.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

请你别敷衍 2024-12-03 14:03:43

正确的顺序是 home.js.coffeescript.haml - 您希望该文件首先被评估为 Haml 来为您提供变量,然后编译为 CoffeeScript,最后充当 JavaScript。

然而,我强烈怀疑 Haml 处理器会因某些 CoffeeScript 语法而卡住。使用 ERB 可能会更安全,它应该适用于您的示例。

The correct order would be home.js.coffeescript.haml—you want the file to first be evaluated as Haml to give you your variables, then compiled as CoffeeScript, then finally served as JavaScript.

However, I strongly suspect that the Haml processor will choke on some CoffeeScript syntax. It would probably be safer to use ERB, which should work for your example.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文