如何使用 content_tag 帮助程序获得以下 html 输出?
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
</ul>
这是我目前拥有的
content_tag(:ul) do
a=*(1..5)
a.each do |step_number|
content_tag(:li, class: "step") do
puts step_number
end
end
end
更新 - 答案
感谢 Peter's Loop & output content_tags in content_tag in content_tag 在下面的帮助链接中,我错过concat
了这些li
项目
content_tag :ul do
items.collect do |step_number|
concat(content_tag(:li, step_number, class: "step"))
end
end