如何为haml循环添加动态/唯一ID

时间:2011-08-13 16:06:58

标签: ruby-on-rails css haml

如何在haml?

的循环中添加动态且唯一的CSS ID

我想的是:%td.tag-house。“#{repo.id}”这是一个像4e23114b1d41c80f180005b2这样的哈希,但不起作用。

...
    %tbody
      - @watched_repos.each do |repo|
        %tr.row
          %td= repo.id
          %td= repo.description
          - if current_user.nickname = 'lgs'
            %td.tag-house."#{repo.id}"= repo.tags

1 个答案:

答案 0 :(得分:4)

试试这个:

%td{:class => "tag-house #{repo.id}"}