我在rails后端使用backbone.js HAML Coffee ,由haml_coffee_assets编译。我的模板中有一些重复。
有没有办法创建类似rails的部分来干涸我的模板?
添加:我可以在Coffee HAML中进行content_for(:something)
吗?
答案 0 :(得分:20)
Haml Coffee中没有content_for
帮助器,但您只需在模板中渲染另一个模板。
例如,您有一个模板test
:
%p My Partial
%ul
%li Is included
您可以将其包含在另一个模板中:
%p Another template
!= JST['test']()
%p That includes a partial
诀窍是用!=
来覆盖渲染的HTML。
要传递局部变量,只需将它们发送到JST
函数即可。如果这是您的部分(articles/_comments.jst.hamlc
):
%h2=@title
%p=@content
然后,这可能是您的模板:
%h1 Comments for this article
- for comment in @article.comments
!= JST['articles/_comment'](comment)