HAML每个循环问题

时间:2015-02-06 14:09:43

标签: haml

过去几个小时我一直在撞墙,我无法弄清楚这个haml代码的问题是什么。这可能是一件简单的事情,但在这一点上我无法弄明白。有人可以告诉我这个代码我做错了什么(attendees_modal.hamlc):

%h4
  Attendees
#attendee_modal_close
  %img{src:"/assets/attendee_modal_close.png"}
#attendee_modal_people
- @attendee_list.each do |attendee|
  .attendee_photo
    - attendee.picURL = "/assets/noPhoto.jpeg" if @picURL == "/images/noPhoto.jpeg"
    %img.round(src="#{attendee.picURL}" class="#{attendee.status}" )
    - if attendee.status == "host"
      .agent_mark
  .attendee_name
    = attendee.name

尝试加载页面时出现此错误:
[stdin]:7:26:错误:意外|
  @ attendee_list.each做|与会者|
^

提前感谢您帮我解决这个问题并阻止我将笔记本电脑扔出窗外:)

0 个答案:

没有答案