我知道这在python中是可行的,但是我可以得到一个javascript对象的方法列表吗?
答案 0 :(得分:12)
您可以遍历对象中的属性并测试其类型。
for(var prop in whatever) {
if(typeof whatever[prop] == 'function') {
//do something
}
}
答案 1 :(得分:6)
要添加到现有答案,ECMAScript第5版。提供了一种使用方法Object.getOwnPropertyNames
访问对象的所有属性(甚至是不可枚举的属性)的方法。尝试枚举本地对象的属性时,例如Math
,for..in
for(var property in Math) {
console.log(property);
}
将不会在控制台上打印任何内容。然而,
Object.getOwnPropertyNames(Math)
将返回:
["LN10", "PI", "E", "LOG10E", "SQRT2", "LOG2E", "SQRT1_2", "abc", "LN2", "cos", "pow", "log", "tan", "sqrt", "ceil", "asin", "abs", "max", "exp", "atan2", "random", "round", "floor", "acos", "atan", "min", "sin"]
你可以在此基础上编写一个辅助函数,只返回给定对象的方法。
function getMethods(object) {
var properties = Object.getOwnPropertyNames(object);
var methods = properties.filter(function(property) {
return typeof object[property] == 'function';
});
return methods;
}
> getMethods(Math)
["cos", "pow", "log", "tan", "sqrt", "ceil", "asin", "abs", "max", "exp", "atan2", "random", "round", "floor", "acos", "atan", "min", "sin"]
支持ECMAScript第5版。在这一点上有点暗淡,因为只有Chrome,IE9pre3和Safari / Firefox nightlies支持它。
答案 2 :(得分:1)
此函数接收任意对象并返回其原型的名称,包含其所有方法的列表以及具有其属性(及其类型)名称的对象。我没有机会在浏览器中测试它,但它适用于Nodejs(v0.10.24)。
function inspectClass(obj) {
var objClass, className;
var classProto;
var methods = [];
var attributes = {};
var t, a;
try {
if (typeof(obj) != 'function') {
objClass = obj.constructor;
} else {
objClass = obj;
}
className = objClass.name;
classProto = objClass.prototype
Object.getOwnPropertyNames(classProto).forEach(function(m) {
t = typeof(classProto[m]);
if (t == 'function') {
methods.push(m);
} else {
attributes[m] = t;
}
});
} catch (err) {
className = 'undefined';
}
return { 'ClassName' : className,
'Methods' : methods,
'Attributes' : attributes
}
}
示例(使用Nodejs):
console.log(inspectClass(new RegExp("hello")));
输出:
{ ClassName: 'RegExp',
Methods: [ 'constructor', 'exec', 'test', 'toString', 'compile' ],
Attributes:
{ source: 'string',
global: 'boolean',
ignoreCase: 'boolean',
multiline: 'boolean',
lastIndex: 'number' } }
以下示例也适用于Nodejs:
console.log(inspectClass(RegExp));
console.log(inspectClass("hello"));
console.log(inspectClass(5));
console.log(inspectClass(undefined));
console.log(inspectClass(NaN));
console.log(inspectClass(inspectClass));
答案 3 :(得分:0)
单线解决方案
Object.getOwnPropertyNames(JSON).filter(function(name){ return 'function' === typeof JSON[name]; })
['解析',' stringify' ]
Object.getOwnPropertyNames(String).filter(function(name){ return 'function' === typeof String[name]; })
[' fromCharCode',' fromCodePoint',' raw' ]
Object.getOwnPropertyNames(Array).filter(function(name){ return 'function' === typeof Array[name]; })
[' isArray','来自',''' ]