如何列出特定对象可以访问的所有方法?
我有一个@current_user
在应用程序控制器中定义的对象:
def current_user
@current_user ||= User.find(session[:user_id]) if session[:user_id]
end
并希望查看视图文件中可用的方法。具体来说,我想看看:has_many
关联提供了哪些方法。(我知道:has_many
应该提供什么,但想检查一下。)
如何列出特定对象可以访问的所有方法?
我有一个@current_user
在应用程序控制器中定义的对象:
def current_user
@current_user ||= User.find(session[:user_id]) if session[:user_id]
end
并希望查看视图文件中可用的方法。具体来说,我想看看:has_many
关联提供了哪些方法。(我知道:has_many
应该提供什么,但想检查一下。)
Answers:
下面将列出User类具有的基本Object类所不具有的方法...
>> User.methods - Object.methods
=> ["field_types", "maximum", "create!", "active_connections", "to_dropdown",
"content_columns", "su_pw?", "default_timezone", "encode_quoted_value",
"reloadable?", "update", "reset_sequence_name", "default_timezone=",
"validate_find_options", "find_on_conditions_without_deprecation",
"validates_size_of", "execute_simple_calculation", "attr_protected",
"reflections", "table_name_prefix", ...
请注意,这methods
是用于Classes和Class实例的方法。
这是我的User类拥有的方法,这些方法不在ActiveRecord基类中:
>> User.methods - ActiveRecord::Base.methods
=> ["field_types", "su_pw?", "set_login_attr", "create_user_and_conf_user",
"original_table_name", "field_type", "authenticate", "set_default_order",
"id_name?", "id_name_column", "original_locking_column", "default_order",
"subclass_associations", ...
# I ran the statements in the console.
请注意,由于User类中定义的(许多)has_many关系而创建的方法不在methods
调用结果中。
补充说明::has_many不会直接添加方法。相反,ActiveRecord机制使用Ruby method_missing
和responds_to
技术来即时处理方法调用。结果,这些方法未在methods
方法结果中列出。
返回一个数组,该数组包含接收方中的公共实例方法和受保护实例方法的名称。对于模块,这些是公共和受保护的方法。对于一个类,它们是实例方法(不是单例方法)。没有参数或参数为false时,将返回mod中的实例方法,否则返回mod和mod的超类中的方法。
module A
def method1() end
end
class B
def method2() end
end
class C < B
def method3() end
end
A.instance_methods #=> [:method1]
B.instance_methods(false) #=> [:method2]
C.instance_methods(false) #=> [:method3]
C.instance_methods(true).length #=> 43
或者仅User.methods(false)
返回该类中定义的方法。
你可以做
current_user.methods
为了更好的上市
puts "\n\current_user.methods : "+ current_user.methods.sort.join("\n").to_s+"\n\n"
假设用户has_many帖子:
u = User.first
u.posts.methods
u.posts.methods - Object.methods
阐述@clyfe的答案。您可以使用以下代码获取实例方法的列表(假设您有一个名为“ Parser”的对象类):
Parser.new.methods - Object.new.methods
如果您正在查找由实例响应的方法列表(在您的情况下为@current_user)。根据红宝石文件编制方法
返回obj的公共方法和受保护方法的名称的列表。这将包括在obj的祖先中可访问的所有方法。如果可选参数为false,则返回obj的公共和受保护的单例方法的数组,该数组将不包含obj中包含的模块中的方法。
@current_user.methods
@current_user.methods(false) #only public and protected singleton methods and also array will not include methods in modules included in @current_user class or parent of it.
或者,您还可以检查对象上是否可以调用方法?
@current_user.respond_to?:your_method_name
如果您不希望使用父类方法,则只需从中减去父类方法即可。
@current_user.methods - @current_user.class.superclass.new.methods #methods that are available to @current_user instance.
@current_user
。