admin管理员组文章数量:1346304
I was playing with class/function/prototype inheritance a bit and got a decent setup working. Something simple that I understand.
/
For debugging purposes, I wanted to print in each constructor what kind of object was calling that constructor. For instance the Ronin constructor calls the Ninja constructor and that calls the Person constructor. For that I made a get_class
function:
function get_class(obj) {
var C = String(obj.__proto__.constructor);
return C.match(/function (\w+)\(/, C)[1];
}
and that doesn't work. It always returns "Person". Why? Every 'class' has its own constructor, doesn't it? If I do a console.log(this)
in every constructor, Chrome Devtools knows which type the object is. How do I get there (with vanilla JS)?
PS. Full output in my Chrome:
I was playing with class/function/prototype inheritance a bit and got a decent setup working. Something simple that I understand.
http://jsfiddle/rudiedirkx/rwPeD/6/
For debugging purposes, I wanted to print in each constructor what kind of object was calling that constructor. For instance the Ronin constructor calls the Ninja constructor and that calls the Person constructor. For that I made a get_class
function:
function get_class(obj) {
var C = String(obj.__proto__.constructor);
return C.match(/function (\w+)\(/, C)[1];
}
and that doesn't work. It always returns "Person". Why? Every 'class' has its own constructor, doesn't it? If I do a console.log(this)
in every constructor, Chrome Devtools knows which type the object is. How do I get there (with vanilla JS)?
PS. Full output in my Chrome:
Share Improve this question asked Jul 14, 2012 at 3:20 RudieRudie 53.9k42 gold badges135 silver badges175 bronze badges 1- possible duplicate of Why do you need to reset javascript constructor during inheritance? – Bergi Commented Jan 1, 2014 at 14:20
2 Answers
Reset to default 6Or you could do something that actually works...
function getClass(obj) {
return obj.__proto__.constructor.name;
}
obj.attr("class") only works if the method attr exists with it won't in a native environment.
Still your suggestion was very good in it's design.
Please note that proto.constructor.name will always return "Object" if the class is not a native class, such as Array, String, RegExp, Error, etc... If anyone knows how to convince the "name" property to return the real name, even if I have to add code to do it, I would buy him a banana for his/her trouble.
I think the problem refers to following line. this.prototype.constructor points to what Person.prototype points to.
this.prototype = Object.create(sup.prototype);
You may need change its reference explicitly.
this.prototype.constructor = this;
The similar question can be found at Get name of derived constructor in Javascript
本文标签: javascriptGet current 39class name39 after classprototype inheritanceStack Overflow
版权声明:本文标题:javascript - Get current 'class name' after classprototype inheritance - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743829604a2546279.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论