這看起來像一個愚蠢的問題,但我有一個名爲Ad的模型,並且我有一個名爲auto的庫,其中包含一個類Ad(lib/auto.rb) 。從同一方法的lib文件中訪問Rails模型名稱
#auto.rb lib file
module auto
class Ad
def initialize
...
end
def convert
# here I would like to access my model class Ad
# ::Ad does not work. Requiring it does not work either.
end
end
end
Rails 3是否在一些全局命名空間下存儲模型?
我想要調用的是模型類廣告,它生活在應用程序/模型/廣告中。因此,在module :: Ad#self.some_method中生活的方法中,我想實例化一個屬於類Ad
Sid
2011-04-13 04:37:34