我有一個模塊:未定義的方法,爲什麼?
module Room::Chair
def get_chair_type(user)
..
end
end
然後,我有一個類方法 'self.get_available_chair',其調用'get_chair_type的方法在Room::Chair
模塊的類:
class Store < ActiveRecord::Base
include Room::Chair
def self.get_available_chair(user)
my_chair=get_chair_type(user) # error: undefined method 'get_chair_type'
end
end
我有include Room::Chair
,但我得到了錯誤未定義的方法'get_chair_type(user)'爲什麼?