ruby-on-rails – haml_tag直接输出到Haml模板

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – haml_tag直接输出到Haml模板前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的HAML模板的帮助器出了什么问题?
def display_event(event)
    event = MultiJson.decode(event)
    markup_class = get_markup_class(event)
    haml_tag :li,:class => markup_class do
      haml_tag :b,"Foo"
      haml_tag :i,"Bar"
    end
  end

这是错误

haml_tag outputs directly to the Haml template.
Disregard its return value and use the - operator,or use capture_haml to get the value as a String.

模板调用display_event,如下所示:

- @events.each do |event|
     = display_event(event)

如果我使用常规标记,它将扩展为以下内容

%li.fooclass
   %b Foo
   %i Bar

解决方法

错误消息中的线索:
Disregard its return value and use the - operator,or use capture_haml to get the value as a String.

来自haml_tag的文档:

haml_tag outputs directly to the buffer; its return value should not be used. If you need to get the results as a string,use #capture_haml.

要修复它,要么将Haml更改为:

- @events.each do |event|
  - display_event(event)

(即使用 – 运算符而不是=),或更改方法以使用capture_haml

def display_event()
  event = MultiJson.decode(event)
  markup_class = get_markup_class(event)
  capture_haml do
    haml_tag :li,"Bar"
    end
  end
end

这将使该方法返回一个字符串,然后您可以在Haml中显示=.

请注意,您只需要进行其中一项更改,如果您同时取消这两项更改,则不会显示任何内容.

原文链接:https://www.f2er.com/ruby/270766.html

猜你在找的Ruby相关文章