0

我在 Rails 3.2 应用程序中使用 haml_coffee_assets。以下适用于 ejs 模板:

<table>
  <tr>
    <th></th>
  </tr>
  <% tutorials.each(function(model) { %>
    <tr>
      <td><%= model.escape('title') %>
    </tr>
  <% }); %>
</table>

我似乎无法在 haml_coffee 中使用它。以下是我最好的猜测,但由于某种原因,这个 haml_coffee 模板不起作用:

%table
  %thead
    %tr
      %th Tutorial Name
  %tbody
    - for tutorial in @tutorials
      - do (model) ->
      %tr
        %td= model.title

我得到的只是:

ReferenceError: Can't find variable: model
4

2 回答 2

4

由于您提到您在 GitHub 问题上使用 Backbone,我假设这@tutorials是一个 Backbone 集合,您也可以使用此替代方法:

%table
  %thead
    %tr
      %th Tutorial Name
  %tbody
    - for model in @tutorials.models
      %tr
        %td= model.escape('title')
于 2012-10-06T08:09:03.247 回答
1

我终于能够使用以下方法来解决这个问题:

%table
  %thead
    %tr
      %th Tutorial Name
  %tbody
    - @tutorials.each (model) ->
      %tr
        %td= model.escape('title')

希望这对其他人有帮助!

于 2012-10-06T00:03:33.797 回答