Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如在
class C before_filter X ... end
可以以某种方式将 X 指定为另一个(非超)类中的方法吗?
我想知道这是否可以通过将参数更改为 before_filter 来实现。
我不确定你为什么要在前置过滤器中调用一个类本身,而不是你可以这样做
class C before_filter :load_other_class_method ... load_other_class_method X.new_your_method #or loading your class end end