提问人:bugdayci 提问时间:11/15/2023 最后编辑:bugdayci 更新时间:11/16/2023 访问量:24
Nodejs 如何获取调试器等函数的原型
Nodejs how to get the prototype of a function like the debugger
问:
在 Nodejs 中,我正在尝试获取定义如下函数的原型名称:
AgreementSchema.statics.saveAgreement = function(){...}
当我检查 Web-storm 调试器时,它可以获取它的类型并显示它。我尝试了不同的东西,如 prototype.constructor.name 等,但由于它被定义为匿名函数,因此它不起作用。
您可以查看下面的调试器屏幕截图,并看到“model.saveAgreement.prototype”与“AgreementSchema.statics.saveAgreement”一起显示。
有没有办法像调试器一样将此函数的名称作为 String 获取?
答: 暂无答案
下一个:没有默认构造函数的数据类
评论
saveAgreement
.prototype
.name
AgreementSchema.statics.saveAgreement = function saveAgreement(){...}