我可以用纯红宝石做到这一点
[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
不允许设置起始索引