@users = User.find_by_sql sql
方式取得的数据,
@users.each do |user| # ... end
循环输出时,如何得到每条数据的索引值?
each_with_index
非常干净的回答。 谢谢。