gpt4 book ai didi

javascript - 如何获取原型(prototype)属性列表

转载 作者:行者123 更新时间:2023-11-29 19:15:42 25 4
gpt4 key购买 nike

作为 Object.getOwnPropertyNames() 返回我想知道的属性数组javascript 中有返回原型(prototype)数组的函数吗?

function PersonInfo(){
this.name=null;
this.sex=null;
this.age=null;
}

PersonInfo.prototype.getPersonInfo1=function(){

};

PersonInfo.prototype.getPersonInfo2=function(){

};

var pI=new PersonInfo();
//HERE we can use getOwnPropertyNames(pI) to get array of properties in PersonInfo() that result Array["name","sex","age"]
console.log(Object.getOwnPropertyNames(pI));

同样如何获取

Array["getPersonInfo1","getPersonInfo2"]

最佳答案

你可以像这样使用Object.keys

Object.keys(PersonInfo.prototype)

关于javascript - 如何获取原型(prototype)属性列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35535549/

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