代码之家  ›  专栏  ›  技术社区  ›  Hemanth

如何更改任何对象的“find”方法的行为?

  •  0
  • Hemanth  · 技术社区  · 14 年前

    我的理解是,任何rails对象的find方法都需要该对象的id列。但我想使用该表的另一列来查找该表/对象的行。我该怎么做?

    例如,我有如下userstats模型:

    create_table "userstats", :force => true do |t|
      t.integer  "user_id"
      t.integer  "no_of_wts"
      t.integer  "no_of_wtb"
      t.integer  "wts_reputation"
      t.integer  "wtb_reputation"
      t.integer  "overall_reputation"
      t.datetime "created_at"
      t.datetime "updated_at"
    end  
    

    我想使用用户id(用户模型的外键)查找userstat模型的实例,而不是使用userstat模型的默认唯一键。

    有什么建议吗?

    我使用的是Rails3.0.1

    2 回复  |  直到 14 年前
        1
  •  3
  •   nonopolarity    14 年前

    你可以这样做

    Person.find_by_user_name
    Person.find_all_by_last_name
    

    文件地址: http://api.rubyonrails.org/classes/ActiveRecord/Base.html

    http://railscasts.com/episodes/2-dynamic-find-by-methods

        2
  •  0
  •   Zabba fl00r    14 年前

    对于你的问题:

    UserStat.find_all_by_user_id(5)
    

    find()的其他一些示例:

    UserStat.find_all_by_wts_reputation_and_wtb_reputation(1,2)
    UserStat.find(:all, :conditions => { :no_of_wtb=> 5 })