我正在尝试遵循这个Rails / Backbone示例,但他们使用的是erb而不是haml。见
第45-48行https://github.com/AndrewGertig/backbone-demo/blob/master/app/views/dogs/index.html.erb
似乎无法向脚本添加:id属性,因此它看起来像......
<script id="dog_template" type="text/html">
<td>{{name}}</td>
<td>{{age}}</td>
</script>
答案 0 :(得分:5)
%script{:id => "dog-template", :type => "text/html"}
%td {{name}}
%td {{age}}
您可以尝试here