如何在 CoffeeScript 文件中使用 haml?
是否可以在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正确的顺序是
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.