私はプレーンルビーでこれを行うことができます
[3,2,1].each.with_index do |e, i|
p e, i
end
3
0
2
1
1
2
しかし、私は Mongoid でこれを行うことはできません:
Model.each.with_index do |e, i|
p e, i
end
で失敗します
undefined method with_index for Array
これを使用せずにこれを修正するにはどうすればよいですか:
Model.each_with_index
開始インデックスを設定できない