如何列出 javascript 对象的函数/方法? (这可能吗?)
这个问题的措辞有意像这个问题。
我什至不知道这是否可能,我记得隐约听说过一些关于 JS 中不可枚举的属性。
不管怎样,长话短说:我正在 js 框架上开发一些东西,我没有文档,也无法轻松访问代码,这将极大地帮助我了解我可以用我的对象做什么。
This question is intentionally phrased like this question.
I don't even know if this is possible, I remember vaguely hearing something about some properties not enumerable in JS.
Anyway, to cut a long story short: I'm developing something on a js framework for which I have no documentation and no easy access to the code, and it would greatly help to know what I can do with my objects.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您的项目中包含 Underscore.js,则可以使用
_.functions(yourObject)
。If you include Underscore.js in your project, you can use
_.functions(yourObject)
.我认为这就是您正在寻找的:
I think this is what you are looking for:
您应该能够枚举直接在对象上设置的方法,例如:
但大多数方法都属于该对象的原型,如下所示:
因此在这种情况下,您可以通过枚举 Obj.prototype 的属性来发现继承的方法。
You should be able to enumerate methods that are set directly on an object, e.g.:
But most methods will belong to the object's prototype, like so:
So in that case you could discover the inherited methods by enumerating the properties of Obj.prototype.
您可以使用以下内容:
You can use the following: