在我的應用程序中,我有一個.txt
文件,其中我open/read
用戶配置文件視圖。 .txt
文件包含一些數字。Ruby on Rails - 在File.open上添加限制,訂單和總和
這是我到目前爲止有:
f = File.open("public/users/14/user.txt", "r")
- f.each_line do |d|
%p= d
我可以put
出所有這些都是在該文件上的數字。有什麼方法可以添加limit
& order (start from bottom to top)
。
我想:
f.limit(4).order('DESC').each_line do |d|
和
File.open("public/users/14/user.txt", "r").limit(5)
當我嘗試這些,我得到錯誤:undefined method limit
或undefined method order
。
是否也可以sum
該文件上的所有數字?
錯誤之際,有一個文件對象沒有這樣的方法。這些方法是爲ActiveRecord對象定義的。 –