如何在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
答案 0 :(得分:4)
试试这个:
%td{:class => "tag-house #{repo.id}"}