對抗垃圾信!請您點這裡:

我的E-mail:
我的Skype:My status

2007年6月12日

find_by_randomize -- 讓ActiveRecord可以亂數取資料

請在model內加入:

def self.find_by_randomize
  ids = self.find(:all, :select => [id])
  self.find(ids[rand(ids.size)]["id"].to_i)
end
這樣一來,就可以取亂數選取資料了!

請參考這篇:為你的 Active Record 做出多采多姿的 find

當然囉.. thegiive那個就是我修改的範本:P

1 則留言:

匿名 提到...

謝謝你的分享阿...找這個方法找了好久感謝你提供資訊呢....