どのようにhtml x timesをrubyでレンダリングしますか?ruby on rails - html x timesをレンダリングするには
現在、私は何か<%= for i in 1..5 do render html:"X" end %>
を持っているが、これは、私はそれがXXXをレンダリングすることができますどのよう1..3
をレンダリング?私は間違って何をしていますか?
# x would be the number of times to render this html
<% x.times do %>
<%= render html: 'X' %>
<% end %>
あなたがこれをやっている理由はわからない、しかし、スタックオーバーフローのコミュニティがより良いアプローチを提供することができる場合がありますについてはどのように
「レンダリング1..3」とは何ですか? –