我认为变量“ x”。我需要显示一些代码“ x”的次数。
我基本上想建立一个像这样的循环:
for i = 1 to x
do something on (i)
end
有没有办法做到这一点?
Answers:
如果您是在erb视图(对于Rails)中执行此操作,请注意<%
和的<%=
区别。您想要的是:
<% (1..x).each do |i| %>
Code to display using <%= stuff %> that you want to display
<% end %>
对于纯Ruby,您可以参考:http : //www.tutorialspoint.com/ruby/ruby_loops.htm
for i in 0..max
puts "Value of local variable is #{i}"
end