您如何在一个循环中计数以显示您所在的循环?
Individual.all.each do |f|
#Fetch Data
Puts Count
end
答案 0 :(得分:4)
使用 CalledProcessError: Command '['java', '-jar', '/usr/local/lib/python2.7/dist-packages/tabula/tabula-1.0.2-jar-with-dependencies.jar', '--pages', '1', '--guess', 'New_client1/Doc1/sample1.pdf']' returned non-zero exit status 1
代替each_with_index
,这将允许您在块中使用第二项。
each
请记住,所有索引均始于Individual.all.each_with_index do |f, index|
puts f # show the 'individual'
puts index # show 'which one'
end
,因此,如果要显示正在使用的索引的“数字”,则需要执行0
(因为如果使用的是puts index + 1
项的索引将为3rd
)。