在Rails 7中,为什么下面的帮助器不呈现列表项?
def list(options)
tag.ul(class: "a") do
options.each do |option|
tag.li(class: "b") do
tag.span(option, class: "c")
end
end
end
end
字符串
我调用<%= list(["X", "Y", "Z"]) %>
,所呈现的只是<ul class="a"></ul>
。
我错过了什么?
1条答案
按热度按时间nqwrtyyt1#
通常情况下,使用ERB,你会这样写:
字符串
使用
concat
:型
使用
safe_join
:型