本文介绍了通过平衡HOWTO排名项目在轨道上的Ruby的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在执行一个投注系统和每个用户都有一个平衡点,我怎么能找到使用ActiveRecord的方式,用户的等级?感谢您的帮助。
I am implementing a betting system and each user has a balance , how can i find a rank of a user using activerecord methods?thanks for your help.
推荐答案
要获取用户的级别,
Users.all(:order => "balance").index(a_particular_user)
这应该给你一个特定用户的索引(级)的所有用户的数组(排序余额)之内。
This should give you the index (rank) of a particular user within the array of all users (sorted by balance).
这篇关于通过平衡HOWTO排名项目在轨道上的Ruby的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!