gpt4 book ai didi

javascript - 有没有办法在javascript中获取返回值的类型?

转载 作者:数据小太阳 更新时间:2023-10-29 08:52:38 25 4
gpt4 key购买 nike

我想做一些类似下面的 ruby​​ 代码摘录

a = MyClass.new

a.class

#=> MyClass
a.methods

#=> list all available methods for object a or instances methods for MyClass

我可以在 javascript 中做类似的事情吗?并且还想听听您的建议,以更好的方式获取对象类型以及对象可用的方法和属性

最佳答案

我强烈推荐 underscore.js为了这个任务。

Underscore is a utility-belt library for JavaScript that provides a lot of the functional programming support that you would expect in Prototype.js (or Ruby).

您要找的方法是functions ,也称为 methods(链接应该带你到它)。

var a = new MyClass()

a instanceof MyClass // => true
a.constructor === MyClass // => true

_(a).methods() // Lists all methods that are members of a

关于javascript - 有没有办法在javascript中获取返回值的类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9074124/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com