2011-12-18 12 views
0

私はRoRを初めて使用しています。私が他の言語で好む方法論の1つは、脂肪モデルを定義する能力です。他の例を見ると、そのアイデアはかなり単純ですが、私は方法論の実装に少し問題があります。 RailsとFatモデル

は、私がテスト用に作成した非常に単純なモデルを持っている:
class Account::User < ActiveRecord::Base 
#validates_presense_of :username, :first_name, :last_name, :instance_id, :user_type, :is_active 
#validates_uniqueness_of :username 

def self.all_by_user_type(user_type) 
    p user_type 
end 
end 

私は以下の例外を取得all_by_user_typeメソッドを使用しようとする

。これに関する助けがあれば大歓迎です。

irb(main):002:0> u.all_by_user_type(1) NoMethodError: undefined method all_by_user_type' for #<Account::User:0x7ffe60baebe8> from /usr/lib/ruby/gems/1.8/gems/activemodel-3.1.3/lib/active_model/attribute_methods.rb:385:in method_missing' from /usr/lib/ruby/gems/1.8/gems/activerecord-3.1.3/lib/active_record/attribute_methods.rb:60:in `method_missing' from (irb):2 from :0

答えて

2

クラスメソッドを定義しています。クラスメソッドの前にクラス名を付けてインスタンスにアクセスする必要があります。