album/show.html.haml
#comment_list= render :partial => 'shared/comments', :locals => { :commentable => @album }
shared/_comments.html.haml
#comments
= commentable.comments.each do |comment|
= comment.content
display
Hello #<Comment:0x7f668f037710>
为什么地址显示?如何删除它?
答案 0 :(得分:1)
如果您在评论之前移除=会怎样? 我认为解析器知道你是混合erb和haml。尝试删除=并插入 - 而不是。